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

本文标签: javascriptRemove element from object jqueryStack Overflow