官术网_书友最值得收藏!

Destructuring

We have a new way to assign values to objects and arrays. Let’s look at some examples:

var [a, b] = ["hello", "world"];
console.log(a); // "hello"
console.log(b); // "world"

var obj = { name: "Diego", lastName: "Arguelles" };
var { name, lastName } = obj;
console.log(name); // "Diego"

var foo = function() {
return ["175", "75"];
};
var [height, weight] = foo();
console.log(height); //175
console.log(weight); //75
主站蜘蛛池模板: 新营市| 澄迈县| 江达县| 建平县| 陇南市| 普洱| 巴林左旗| 滦平县| 射阳县| 图木舒克市| 柳林县| 罗定市| 盐山县| 丰顺县| 普格县| 城固县| 宁强县| 长宁县| 拉孜县| 凤台县| 静安区| 合山市| 麻城市| 米脂县| 玉屏| 蒙自县| 阳信县| 闸北区| 永城市| 介休市| 新乡县| 襄垣县| 泰安市| 广东省| 邯郸县| 丽水市| 蒙山县| 三原县| 永春县| 苗栗市| 廉江市|