函数:
var m2=function(){
console.log('2222');
}
console.log(typeof(m2));
输出结果:test.html:31 function
jsp中的函数没有重载, 后者覆盖前者。
function m2(){
console.log('2222');
}
console.log(typeof(m2)+‘ ’+m2);
输出结果:
test.html:35 function function m2(){
console.log('2222');
}