最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Remove element from object jquery - Stack Overflow

programmeradmin2浏览0评论

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
Add a ment  | 

4 Answers 4

Reset to default 5

The 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).

发布评论

评论列表(0)

  1. 暂无评论