<script>
var globalVariable = 7; //==window.globalVariable
function aGlobal( param ) { //==window.aGlobal();//param is only accessible in this functionvar scopedToFunction = {//can't be accessed outside of this function
nested : 3 //accessible by: scopedToFunction.nested};
anotherGlobal = {//global because there's no `var`};
}
</script>
function f() {var x = 1let y = 1const z = 1}console.log(typeof x) // undefined (because var has function scope!)console.log(typeof y) // undefined (because the body of the function is a block)console.log(typeof z) // undefined (because the body of the function is a block)
{var x = 1let y = 1const z = 1}console.log(x) // 1console.log(typeof y) // undefined because `y` has block scopeconsole.log(typeof z) // undefined because `z` has block scope
在下面,x在循环之外可见,因为var具有函数范围:
for(var x = 0; x < 5; ++x) {}console.log(x) // 5 (note this is outside the loop!)
for(var x = 0; x < 5; ++x) {setTimeout(() => console.log(x)) // closes over the `x` which is logically positioned at the top of the enclosing scope, above the loop}console.log(x) // note: visible outside the loop
for(let x = 0; x < 5; ++x) {setTimeout(() => console.log(x)) // `let` declarations are re-declared on a per-iteration basis, so the closures capture different variables}console.log(typeof x) // undefined
function b(){var d = 21; //local variableconsole.log(d);
function dog(){ console.log(a); }dog(); //execute local function}
console.log(d); //ReferenceError: dddddd is not defined
var global_variable = "global_variable";var hoisting_variable = "global_hoist";
// Global variables printedconsole.log("global_scope: - global_variable: " + global_variable);console.log("global_scope: - hoisting_variable: " + hoisting_variable);
if (true) {// The variable block will be global, on true condition.var block = "block";}console.log("global_scope: - block: " + block);
function local_function() {var local_variable = "local_variable";console.log("local_scope: - local_variable: " + local_variable);console.log("local_scope: - global_variable: " + global_variable);console.log("local_scope: - block: " + block);// The hoisting_variable is undefined at the moment.console.log("local_scope: - hoisting_variable: " + hoisting_variable);
var hoisting_variable = "local_hoist";// The hoisting_variable is now set as a local one.console.log("local_scope: - hoisting_variable: " + hoisting_variable);}
local_function();
// No variable in a separate function is visible into the global scope.console.log("global_scope: - local_variable: " + local_variable);
// i IS NOT known here// j IS NOT known here// k IS known here, but undefined// l IS NOT known here
function loop(arr) {// i IS known here, but undefined// j IS NOT known here// k IS known here, but has a value only the second time loop is called// l IS NOT known here
for( var i = 0; i < arr.length; i++ ) {// i IS known here, and has a value// j IS NOT known here// k IS known here, but has a value only the second time loop is called// l IS NOT known here};
// i IS known here, and has a value// j IS NOT known here// k IS known here, but has a value only the second time loop is called// l IS NOT known here
for( let j = 0; j < arr.length; j++ ) {// i IS known here, and has a value// j IS known here, and has a value// k IS known here, but has a value only the second time loop is called// l IS NOT known here};
// i IS known here, and has a value// j IS NOT known here// k IS known here, but has a value only the second time loop is called// l IS NOT known here}
loop([1,2,3,4]);
for( var k = 0; k < arr.length; k++ ) {// i IS NOT known here// j IS NOT known here// k IS known here, and has a value// l IS NOT known here};
for( let l = 0; l < arr.length; l++ ) {// i IS NOT known here// j IS NOT known here// k IS known here, and has a value// l IS known here, and has a value};
loop([1,2,3,4]);
// i IS NOT known here// j IS NOT known here// k IS known here, and has a value// l IS NOT known here
for ( let i = 0; i < 10; i++){statement1...statement2...// inside this scope we can access the value of i, if we want to access the value of i outside for loop it will give undefined.}
var x = 10let y = 10const z = 10{x = 20let y = 20const z = 20{x = 30// x is in the global scope because of the 'var' keywordlet y = 30// y is in the local scope because of the 'let' keywordconst z = 30// z is in the local scope because of the 'const' keywordconsole.log(x) // 30console.log(y) // 30console.log(z) // 30}console.log(x) // 30console.log(y) // 20console.log(z) // 20}
console.log(x) // 30console.log(y) // 10console.log(z) // 10
let letVar = 'global';var varVar = 'global';
function foo () {
if (true) {// this variable declared with let is scoped to the if block, block scopedlet letVar = 5;// this variable declared with let is scoped to the function block, function scopedvar varVar = 10;}
console.log(letVar);console.log(varVar);}
foo();
Properties of the document and properties of the element the handler is attached to may also be referenced as standalone variables inside inline handlers because inline handlers are invoked inside of two with blocks, one for the document, one for the element. The scope chain of variables inside these handlers is extremely unintuitive, and a working event handler will probably require a function to be global (and unnecessary global pollution should probably be avoided).
Since the scope chain inside inline handlers is so weird, and since inline handlers require global pollution to work, and since inline handlers sometimes require ugly string escaping when passing arguments, it's probably easier to avoid them. Instead, attach event handlers using Javascript (like with addEventListener), rather than with HTML markup.
function foo() {console.log('foo running');}document.querySelector('.my-button').addEventListener('click', foo);
<button class="my-button">click</button>
Modules (<script type="module">)
On a different note, unlike normal <script> tags, which run on the top level, code inside ES6 modules runs in its own private scope. A variable defined at the top of a normal <script> tag is global, so you can reference it in other <script> tags, like this:
<script type="module">const foo = 'foo';</script><script>// Can't access foo here, because the other script is a moduleconsole.log(typeof foo);</script>
(function foo() { console.log(foo) })();console.log(typeof foo); // undefined, because `foo` is scoped to its own expression
//but, like this(function foo() {console.log('1:', foo) // function foofoo = 100console.log('2:', foo) // function foo, is not 100, why?})()