多项选择题
A.var test=1;typeof test==’number’;B.var test=1.2;typeof test==’float’;C.var test=undefined;typeof test==’undefined’;D.var test={};typeof test==’object’;
(function() { var a1 = b1 = 5; })(); console.log(b1);co...
单项选择题
(function() { var a1 = b1 = 5; })(); console.log(b1);console.log(a1);上面代码运行后 输出的结果是()
A.5,5B.undefined,undefinedC.5,undefinedD.5,Uncaught ReferenceError:a is not defined
forEach遍历和map遍历相比较,正确的是()A.都有返回值B.map有返回值C.forEach有返回值D...
单项选择题forEach遍历和map遍历相比较,正确的是()
A.都有返回值B.map有返回值C.forEach有返回值D.都没有返回值
用来生成随机数的方法是?()A.Math.random()B.Math.round()C.Math.floor...
单项选择题用来生成随机数的方法是?()
A.Math.random()B.Math.round()C.Math.floor()D.Math.min()