node.js - Cannot delete object property in Javascript - Stack Overflow

obj = {a: []}I want to delete obj.a. This code worksif(!obj.a.length)delete obj.a workThis is not

obj = {a: []}

I want to delete obj.a. This code works

if(!obj.a.length)
    delete obj.a //work

This is not

function _delete(o) {
    if(!o.length)
      delete o 
}

_delete(obj.a) //not work

Any way to make it works?

obj = {a: []}

I want to delete obj.a. This code works

if(!obj.a.length)
    delete obj.a //work

This is not

function _delete(o) {
    if(!o.length)
      delete o 
}

_delete(obj.a) //not work

Any way to make it works?

Share Improve this question asked Jul 3, 2018 at 22:25 LuviasLuvias 5702 gold badges7 silver badges21 bronze badges 0
Add a ment  | 

1 Answer 1

Reset to default 8

You can't delete [], which is all that you pass to the function.

You can create a function like

function _delete(obj, prop) {
    if (obj[prop] && ! obj[prop].length) delete obj[prop];
}

and call it with

_delete(obj, 'a');

I'd also add a check for what the property is, and if it exists at all. As you seem to target an array, add a check if it's an array that gets passed:

function _delete(obj, prop) {
    if (Array.isArray(obj[prop]) && ! obj[prop].length) delete obj[prop];
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743701734a4492688.html

相关推荐

  • node.js - Cannot delete object property in Javascript - Stack Overflow

    obj = {a: []}I want to delete obj.a. This code worksif(!obj.a.length)delete obj.a workThis is not

    16小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信