面試題1
阿新 • • 發佈:2018-07-20
() 等價 code 面試題1 con return var undefine cti
1、
var ryl = { bar: function(){ return this.baz; }, baz: 1 }; (function(){ console.log(typeof arguments[0]()); //undefined })(ryl.bar);
2、
function test(){ console.log("out"); } (function(){ if(false){ function test(){ console.log("in"); } } test(); })();// 等價於 function test(){ console.log("out"); } (function(){ var test; // 變量提升 if(false){ function test(){ console.log("in"); } } test(); })();
面試題1