A.object B.number C.string D.Object
单项选择题(function() { console.log(typeof arguments); })();的打印结果为()
A.object B.Object C.arguments D.null
单项选择题不属于前端模块化开发规范的是()
A.commonjs B.requirejs C.jqueryjs D.seajs
多项选择题向数组内添加元素的方法有()
A.push B.shift C.unshift D.splice
多项选择题以下可以获取<input type= checkbox class= check-box >元素的有()
A.document.querySelector(’.check-box’) B.document.querySelector(’input[type=checkbox]’); C.document.getElementsByClassName(’check-box’)[0] D.document.getElementByClassName(’check-box’)
多项选择题__proto__属性和prototype属性的区别()
A.prototype是function对象中专有的属性 B.__proto__是普通对象的隐式属性,在new的时候,会指向prototype所指的对象 C.__proto__实际上是某个实体对象的属性,而prototype则是属于构造函数的属性 D.__proto__只能在学习或调试的环境下使用;