admin管理员组文章数量:1344961
How can I remove an element using its position of an object? I for example want to remove the second one.
Object {duur: ".short", taal: ".nl", topic: ".algemeen-management"}
How can I remove an element using its position of an object? I for example want to remove the second one.
Object {duur: ".short", taal: ".nl", topic: ".algemeen-management"}
Share
Improve this question
asked Jan 5, 2017 at 15:00
user3071261user3071261
3862 gold badges10 silver badges21 bronze badges
3
- 1 Properties are not ordered. You cannot reliably say which one is the "second" property. – Felix Kling Commented Jan 5, 2017 at 15:04
- Possible duplicate of How to remove a property from a JavaScript object? – Jason Krs Commented Jan 5, 2017 at 15:04
- object keys don't have a guaranteed order – maioman Commented Jan 5, 2017 at 15:05
4 Answers
Reset to default 5The Object.keys()
will give you in the order of how it is defined. Always it is better to remove based on the key name. Because, in an object, the keys are not exactly sorted and they don't have any order.
var obj = {
duur: ".short",
taal: ".nl",
topic: ".algemeen-management"
};
console.log(obj);
var position = 2;
delete obj[Object.keys(obj)[position - 1]];
console.log(obj);
The best and right way to do is to remove by the key name:
var obj = {
duur: ".short",
taal: ".nl",
topic: ".algemeen-management"
};
console.log(obj);
var key = "taal";
delete obj[key];
console.log(obj);
like this :
var index = 1 ; // the position you want minus 1
var example = {duur: ".short", taal: ".nl", topic: ".algemeen-management"}
delete example[Object.keys(example)[index]];
Better use the delete operator like this:
delete myObject.taal;
You can siply use : delete(object.taal).
本文标签: javascriptRemove element from object jqueryStack Overflow
版权声明:本文标题:javascript - Remove element from object jquery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743780063a2537666.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论