A._proto_ B.prototype C.constructor D.以上都不对
A.Math.max.apply(findMax) B.findMax.max() C.Math.max.call(findMax) D.Math.max.apply(Math,findMax)
function myFunction(x, y) { y = y || 0; } myFunction(1) console.log(y)打印结果是()
A.0 B.1 C.undefined D.报错:yis not defined