admin管理员组文章数量:1342504
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 01 Answer
Reset to default 8You 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];
}
本文标签: nodejsCannot delete object property in JavascriptStack Overflow
版权声明:本文标题:node.js - Cannot delete object property in Javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743701733a2524438.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论