标签:code javascrip inf div rip color 结果 nts img
JS中的函数没有重载的概念
js中不像是java,拥有重载的概念,所以函数名相同的函数,js会认为是同一个函数,所以会输出写在最后的一个函数的结果。
function test(){ alert(arguments[0]); } function test(x){ alert(x) } function test(x,y){ alert(x+" "+y) } test(7);
结果是:
07.30《JavaScript》——JS中的函数没有重载的概念
标签:code javascrip inf div rip color 结果 nts img
原文地址:https://www.cnblogs.com/justlive-tears/p/9393442.html