空白2016
2015-12-10 11:32
function Math(x){
document.write(Math.ceil(x)+"<br/>");
}
Math(3.3);
Math(-0.1);
Math(-9.9);
Math(8.9);
请问为什么不能将Math()作为函数名,而一定要用小写的math()呢?
Math是js内置对象,相当于保留字,和不能用function作为函数名一个道理
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题
回答 3
回答 3