// 左右两边结构必须一样
// 右边必须有值
// 声明和赋值不能分开
    let [x, y] = [1, 2, 3];  //数组
    console.log(x);
    console.log(y);
    let {age,myName} = {myName:'zhangsan', age:10, sex:'男'};  //对象
    console.log(myName);
    console.log(age);

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注