const 声明变量,变量只能在声明的时候确定,后续是没有办法修改的
【注】const声明常量(变量没有办法改);
const IP = "111";
alert(IP); //输出111
IP = 'xx';
alert(IP); //控制台报错 Uncaught TypeError: Assignment to constant variable.
const 声明变量,变量只能在声明的时候确定,后续是没有办法修改的
【注】const声明常量(变量没有办法改);
const IP = "111";
alert(IP); //输出111
IP = 'xx';
alert(IP); //控制台报错 Uncaught TypeError: Assignment to constant variable.