//三种命名变量 //var全局变量,let局部,const无法重置 var hello="hello"; console.log(hello); hello="hello world"; console.log(hello); //可以正常执行 if(true){ let world="nothing"; console.log(world); } /* if(true){ let world="nothing"; } console.log(world); 此时程序会报错,因为超出了let的作用域 */