为什么不能将Math()作为函数名?
function Math(x){
document.write(Math.ceil(x)+"<br/>");
}
Math(3.3);
Math(-0.1);
Math(-9.9);
Math(8.9);
请问为什么不能将Math()作为函数名,而一定要用小写的math()呢?
function Math(x){
document.write(Math.ceil(x)+"<br/>");
}
Math(3.3);
Math(-0.1);
Math(-9.9);
Math(8.9);
请问为什么不能将Math()作为函数名,而一定要用小写的math()呢?
2015-12-10
举报