摘要:
阅读全文
摘要:
阅读全文
摘要:
a=1 function test(e){ function e(){} arguments[0]=2 console.log(e) if(a){ var b=3 } var c; a=4; var a; console.log(b) f=5 console.log(c) console.log(a 阅读全文
摘要:
阅读全文
摘要:
console.log(test()) function test(){ a=1 function a(){ } var a=2 return a } //AO{ // a:undefined >function a(){}-->1 >2 // // //} // 运行结果 阅读全文
摘要:
阅读全文
摘要:
function test(){ return a; a=1; function a(){ } var a=2 } console.log(test()) // AO{ // a:undefined >function a(){} // //} // 运行结果 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
function test(){ console.log(b) if(a){ var b=2 } c=3; console.log(c) } var a; test() a=1 console.log(a) // AO{ // // b:undefined-->2 // //} //GO{ // a 阅读全文
摘要:
阅读全文
摘要:
a=1 function test(){ console.log(a) a=2 console.log(a) var a=3 console.log(a) } test() var a; //GO{ // a:undefined >1 // test:function test(){} //} // 阅读全文
摘要:
阅读全文
摘要:
var b = 3 console.log(a) function a(a) { console.log(a) var a = 2; console.log(a) function a() { } var b = 5; console.log(b) } a(1) //AO{ // a:undefin 阅读全文
摘要:
阅读全文
摘要:
function test(){ var a=b=1; console.log(b) } test() //GO={ // b:1 //} //AO{ // a:undefined >1 //} 运行结果 阅读全文