説明
可以將陣列或物件的資料取出成獨立變數。
※通常用來大量指定變數,可以一行寫完。
範例
/********
以前的寫法
const a=1;
const b=2;
*********/
/***ES6新寫法***/
[a, b]=[1, 2]
//可以簡潔地指定一坨變數。
console.log(a, b)//1 2
Ian's Blog
可以將陣列或物件的資料取出成獨立變數。
※通常用來大量指定變數,可以一行寫完。
/********
以前的寫法
const a=1;
const b=2;
*********/
/***ES6新寫法***/
[a, b]=[1, 2]
//可以簡潔地指定一坨變數。
console.log(a, b)//1 2
const width=100;
width=200;
console.log(width);//100
//不可被修改
let points=50;
const winner=false;
if(points>40) {
const winner=true;
console.log(winner);//true
//只有在block內部,才能夠被更改
}
console.log(winner);//false
//在外部則不會被更改,呈現初始值
當資料類型為By Value時〔Number, String, Boolean〕
以const宣告的變數是不能被再指定的(即等於不能被改)
//錯誤示例
const name='Ian';
name='Chen'; //←ERROR!!
但若資料類型是By Reference時〔Object, Array〕,
以const宣告後可以用push, object.item=xxx等方式修改其值。
但一樣不能進行再指定的動作
//正確示例
const fruits=['apple', 'banana', 'orange'];
console.log(fruits); //['apple', 'banana', 'orange']
fruits.push('grape');
console.log(fruits); //['apple', 'banana', 'orange', 'grape']
//錯誤示例
const colors=['red', 'blue', 'green'];
colors=['pink', 'black', 'white'] //←ERROR!!
block是指大括弧 {} 裡面。
像是if述句,for述句,function裡面都是block
let width=100;
width=200;
console.log(width);//200
//可被修改
let points=50;
let winner=false;
if(points>40) {
let winner=true;
console.log(winner);//true
//只有在block內部,才能夠被更改
}
console.log(winner);//false
//在外部則不會被更改,呈現初始值