单项选择题
A.extendB.extendsC.superD.以上说法都正确
let arr=[1,2,3,66,55,7],如何使用Math.max取出最大值()A.Math.max.a...
单项选择题let arr=[1,2,3,66,55,7],如何使用Math.max取出最大值()
A.Math.max.apply(Math,arr)B.Math.max.bind(Math,arr)C.Math.max.cal(Math,arr)D.Math.max.borro(Math,arr)
有一个循环for(var a=0,b=0;aA.16B.10C.5D.6
单项选择题有一个循环for(var a=0,b=0;a<10,b<6;a++,b++){k =a +b;}k打印结果为()
A.16B.10C.5D.6
()能将arguments转为数组A.Object.prototype.slice.call(argument...
单项选择题()能将arguments转为数组
A.Object.prototype.slice.call(arguments)B.Object.prototype.isPrototypeOf.call(arguments)C.Object.prototype.toString.call(arguments)D.Object.prototype.splice.call(arguments)