ES2015(ES6)引入了const关键字来定义一个新变量。 const变量声明与其他变量声明的不同之处在于它无法重新分配。
特性:
- 无法重新分配。
- 区块范围
- 可以在声明行的变量上分配它。
- 原始值。
- 可以更改const对象的属性, 但不能更改以引用新对象
- const数组中的值可以更改, 可以将新项目添加到const数组中, 但不能引用新数组。
- 允许在不同块范围内重新声明const变量。
- 无法吊起。
- 创建对值的只读引用。
<
script type= "text/javascript" >
const x = 12;
x = 13;
x += 1;
<
/script>
输出如下:
Uncaught TypeError: Assignment to constant variable.
范例2:它描述了包含Block Scope的const变量。
<
script type= "text/javascript" >
const x = 22;
{
const x = 90;
console.log(x);
{
const x = 77;
console.log(x);
}
{
const x = 45;
console.log(x);
}
}
console.log(x);
<
/script>
输出如下:
90774522
范例3:它描述了const变量, 并在声明后分配了它。
<
script type= "text/javascript" >
const x;
x = 12;
<
/script>
输出如下:
Uncaught SyntaxError: Missing initializer in const declaration
范例4:它描述了const变量不能被提升。
<
script type= "text/javascript" >
x = 3;
console.log(x);
const x;
<
/script>
输出如下:
Uncaught SyntaxError: Missing initializer in const declaration
范例5:它描述了只能修改对数组的引用才能修改数组值。
<
script type= "text/javascript" >
// Changing the content of array is
// possible in cost array
const arr1 = [ "pankaj" , "sumit" , "chandan" , "ajay" ];
console.log(arr1.toString());
arr1[2] = "Narayan" ;
// possibleconsole.log(arr1.toString());
<
/script>
输出如下:
pankaj, sumit, chandan, ajaypankaj, sumit, Narayan, ajay
范例6:它描述了只能修改对对象的引用而不能修改的对象属性。
<
script type= "text/javascript" >
const person = {
first_name: "Pankaj" , last_name: "Singh" , Age: 20, About: "Web Developer and Competitive Programmer"
};
console.log(person);
// It is possible
person.first_name = "Aryan" ;
person.last_name = "Yadav" ;
person.Age = 22;
person.About = "Commerce undergraduate" ;
console.log(person);
// it is not possible
// const person={
//"first_name":"Aryan", //"last_name":"Yadav", //"Age":22, //"About":"Commerce undergraduate"
// }
<
/script>
输出如下:
文章图片
推荐阅读
- PHP ImagickDraw line()函数用法示例
- CouponDunia面试经验|第五组(专职软件工程师)
- jQuery 上下文属性context简要介绍
- jQuery getScript()方法用法详细介绍
- C程序的内存布局详细指南
- Grofers面试经验分享
- 算法设计(C-LOOK磁盘调度算法指南)
- Go变量介绍和用法实例详细指南
- python3全局变量、局部变量和非局部变量 – Python3教程