单项选择题
var y = 18,rs="";if(y%4==0 || y%6!=0){ rs="yes";}else{ rs="no";}console.log(rs);打印结果是()
A.yesB.noC.undefinedD.null
单项选择题 var Bbc = function(){ this.num = 1 } Bbc.prototype['exam'] = function(){ this.num++; } var bbc = new Bbc(); console.log(bbc.exam())结果是? ()
单项选择题 var name = 'hello world'; name.substr(2,4)的结果是()
单项选择题 [3,7,8,0].map(function (v,i) {return v%3;})该运算的输出是? ()