判断题
正确(↓↓↓ 点击‘点击查看答案’看答案解析 ↓↓↓)
属于严格模式要求的是()A.变量必须声明后再使用B.函数的参数不能有同名属性,否则报错C.arguments不...
多项选择题属于严格模式要求的是()
A.变量必须声明后再使用B.函数的参数不能有同名属性,否则报错C.arguments不会自动反映函数参数的变化D.增加了保留字(比如protected、static和interface)
ES6模块功能主要由()命令构成A.exportB.importC.defineD.require
多项选择题ES6模块功能主要由()命令构成
A.exportB.importC.defineD.require
此代码的运行结果不对的为()function test (){ var num = [] var i for ...
多项选择题
此代码的运行结果不对的为()function test (){ var num = [] var i for (i = 0; i <3; i++) { num[i] = function () { console.log(i) } } return num}console.log(test())
A.[0,1,2]B.[3,3,3]C.[undefined、undefined、undefined]D.[?(),?(),?()]