美文网首页
对象的解构

对象的解构

作者: 廖小芝 | 来源:发表于2020-03-18 17:25 被阅读0次
    const obj ={
      name:'lxz',
      age:18,
      height:1.88,
      city:'xxx'
    }
    //es5
    const name = obj.name;
    const age= obj.age;
    const height= obj.height;
    console.log(name)
    console.log(age)
    console.log(height)
    //es6
    const {name,age,height} = obj;
    console.log(name)
    console.log(age)
    console.log(height)
    

    相关文章

      网友评论

          本文标题:对象的解构

          本文链接:https://www.haomeiwen.com/subject/xcygehtx.html