1:有名函数定义方式
2:匿名函数定义方法
https://www.cnblogs.com/wl0000-03/p/6050108.html
console.log(add(3,6));
(function(name){
console.log(name);
})("李银霞");
1:有名函数定义方式
2:匿名函数定义方法
https://www.cnblogs.com/wl0000-03/p/6050108.html
console.log(add(3,6));
(function(name){
console.log(name);
})("李银霞");