赞
踩
最近需要用到Nodejs,就学习一下吧,js小白,如有不对请指正不胜感激。
只记录自己需要用到的地方,可能记录的有些跳跃。
var varname1 [= value1 [, varname2 [, varname3 ... [, varnameN]]]];
//代码A: var name;D name = "nodejs"; //代码B: name = "nodejs"; var name; //代码C: function x() { y = 1; // 在严格模式下会抛出ReferenceError var z = 2; } x(); console.log(y); // '1' console.log(z); // ReferenceError: z is not defined //代码D: console.log(a); // 抛出ReferenceError。 console.log('still going...'); // 不会执行 //代码E var a; console.log(a); // "undefined"或""(不同执行引擎的实现不同) console.log('still going...'); // 'still going...' //代码F var x = 0; function f(){ var x = 1, y = 1; } f(); console.log(x); // 0 console.log(y); // ReferenceError: y is not defined //代码 other1 { var x = 1, y = 1; } console.log(x); // 1 console.log(y); // 1 //代码 other2 { var x = 1; var x = 1; } console.log(x); // 1
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。