JSFiddle - React, Tailwind, and code Playground
JavaScript
var scope = "глобальная";
function f() {
alert(scope);
var scope = 's';
alert(scope);
}
f();
var scope = "глобальная";
function f() {
alert(scope);
var scope = 's';
alert(scope);
}
f();