美文网首页
es6解构多层

es6解构多层

作者: 小番茄1009 | 来源:发表于2020-09-16 10:48 被阅读0次

    constinfo = {person: {name:'xiaobe',other: {age:22, } },song:'rolling',}// 解构person的内容const{person: { name,other: { age } } } = info;// 解构songconst{ song } = info;

    但请注意, person和other是属于未定义的变量

    转自https://www.cnblogs.com/soyxiaobi/p/10567826.html

    侵权删!

    相关文章

      网友评论

          本文标题:es6解构多层

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