标签:
存在同名函数时,最后的函数会覆盖掉以前的同名函数。
1 var x = 1, 2 y = z = 0; 3 function add(n) { 4 return n = n + 1; 5 } 6 y = add(x); 7 function add(n) { 8 return n = n + 3; 9 } 10 z = add(x); 11 console.log(x);//x值未变1 12 console.log(y);//4 13 console.log(z);//4
标签:
原文地址:http://www.cnblogs.com/MissBean/p/4291335.html