es6常用语法:变量的解构赋值

/*变量的解构赋值*/

 var a = 1;

 var b = 2;

 var c = 3;

 

 var a = 1, b = 2, c = 3;

// 数组的结构赋值

 let [a,b,c] = [1,2,3]; 1 2 3

 let [a,b,c] = [,123,]; undefined 123 undefined

 let [a=111, b, c] = [,123,] 111 123 undefined

 console.log(a, b, c);

 

// 对象的结构赋值

 let {foo,bar} = {foo: 'hello',bar: 'hi'}; hello hi

 let {foo,bar} = {bar: 'hi',foo: 'hello'}; hello hi

 console.log(foo,bar);

 

// 对象属性别名(如果有了别名,那么原来的名字就无效le)

 let {foo:abc,bar} = {bar : 'hi',foo : 'nihao'};

 console.log(foo,bar);报错

 console.log(abc,bar);nihao hi

 

// 对象的结构赋值指定默认值

 let{foo:abc='hello',bar} = {bar : 'hi'};

 console.log(abc,bar); hello hi

 

 let {cos,sin,random} = Math;

 console.log(typeof cos);

 console.log(typeof sin);

 console.log(typeof random);

// ----------------------------

// 字符串的结构赋值

// 数组

 let [a, b, c, d, e] = "hello";

 console.log(a,b,c,d,e); h e l l o

 console.log(a,b,c,d); h e l l

 console.log("hello".length);5

 

// 对象

 let {length} = "h1";

 console.log(length);2

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值