函数声明:
sum(); //10
function sum(){ console.log(10)}
表达式声明
s(); //报错 s is not a function
var s = function(){ console.log(20)}
在预解析的过程中,函数会存储整个,因此可以在之前调用,表达式是var声明,只会存储undefined
标签:function,console,函数,声明,表达式,log From: https://www.cnblogs.com/bkyjmjweb/p/16732283.html