通过另一个对象内的键移除对象

这个问题在这里已经有了答案:

  • 我如何从JavaScript对象中移除一个属性? 33个答案

  • 您可以使用delete符:

    delete myMainObj['subObjB'];
    

    要么

    delete myMainObj.subObjB;
    

    你需要使用删除操作符:

    delete myMainObj.subObjB;
    
    链接地址: http://www.djcxy.com/p/4675.html

    上一篇: Removing an object by key inside another object

    下一篇: What is this array called... and how to remove items from it