A.appendChild B.appendChildren C.insertAfter D.insertBefore
单项选择题box.onclick = function() { setTimeout(function() { console.log(this) }) }以上代码运行结果为()
A.window B.box C.undefined D.程序报错
单项选择题每个构造函数都有()属性,指向它的原型
A._proto_ B.prototype C.constructor D.以上都不对
单项选择题以下在数组的末尾删除元素的方法()
A.pop B.push C.shift D.unshift
单项选择题[1,2,3,4].forEach(function(item){returnitem+2})的返回值是()
A.[1,2,3,4] B.[3,4,5,6] C.undefined D.3,4,5,6
单项选择题在严格模式下,如果没有声明变量,则()
A.变量会被自动定义为全局范围的作用域 B.变量会被自动定义为局部作用域 C.程序报错 D.以上都不对