// 声明 function abd(name) { return "welcome to" + name; }
// 调用 console.log(abd("老师"));
// 重写 function abd(name, city) { return "welcome to" + city + "的" + name; } console.log(abd("老师", "郑州"));
以上是函数的重写
// 函数不像变量,不必遵循先声明后使用的规范
// 函数的声明会自动提升到程序的顶部
console.log(sum(100, 300)); function sum(a, b) { return a + b; }
如果是变量的话
let sum = function (a,b) { return a + b; } console.log(sum(100,400));
则不能先声明再调用