admin管理员组文章数量:1339887
Is it possible to destructure an object in Javascript by using a property name stored in a variable?
This is how we destructure at the moment.
const myObject = {a: 1, b: 2, c: 3};
let {a, b, c} = myObject;
console.log(a, b, c);
I would like to be able to store property names in variables:
const myObject = {banana: 1, apple: 2, strawberry: 3};
const chosenFruit = "banana";
const { [[chosenFruit]], ...theRest } = myObject;
console.log(banana); // Should be 1
For full disclosure, the reason I want to be able to do this is I want to remove the property "banana" from the object. So in my use case I want to be left with the theRest
object which doesn't include the banana
property, but there have been times I wanted to iterate through an array of values (e.g. days of the week) and programatically destructure objects quickly.
Is this possible? If so, how?
Thanks!
Is it possible to destructure an object in Javascript by using a property name stored in a variable?
This is how we destructure at the moment.
const myObject = {a: 1, b: 2, c: 3};
let {a, b, c} = myObject;
console.log(a, b, c);
I would like to be able to store property names in variables:
const myObject = {banana: 1, apple: 2, strawberry: 3};
const chosenFruit = "banana";
const { [[chosenFruit]], ...theRest } = myObject;
console.log(banana); // Should be 1
For full disclosure, the reason I want to be able to do this is I want to remove the property "banana" from the object. So in my use case I want to be left with the theRest
object which doesn't include the banana
property, but there have been times I wanted to iterate through an array of values (e.g. days of the week) and programatically destructure objects quickly.
Is this possible? If so, how?
Thanks!
Share Improve this question edited Nov 18, 2020 at 15:04 Thomas Clayson asked Nov 18, 2020 at 14:51 Thomas ClaysonThomas Clayson 30k26 gold badges152 silver badges226 bronze badges 8-
delete myObject.banana;
<= done – Taplar Commented Nov 18, 2020 at 14:53 -
@Taplar you mean
delete myObject[choosenFruit]
– Ilijanovic Commented Nov 18, 2020 at 14:55 - You did say your goal was to remove banana from the object. – Taplar Commented Nov 18, 2020 at 14:55
-
1
Are you after something like
const { [chosenFruit]: banana, ...theRest } = myObject;
? you would have to explicitly typebanana
in the destructuring though – Nick Parsons Commented Nov 18, 2020 at 14:56 - 1 So you could clone it and then remove it – Taplar Commented Nov 18, 2020 at 14:57
4 Answers
Reset to default 13You could take a puted property names and rename the property (assigning to new variable names).
const myObject = { banana: 1, apple: 2, strawberry: 3 };
const chosenFruit = "banana";
const { [chosenFruit]: fruit, ...theRest } = myObject;
console.log(fruit); // 1
console.log(theRest);
const myObject = {banana: 1, apple: 2, strawberry: 3};
const chosenFruit = "banana";
const newThing = { ...myObject };
delete newThing[chosenFruit];
console.log(myObject, newThing);
This version uses deconstruction to clone, and then removes the unwanted property.
A variation with destructuring parameters:
const pick = (fruit, {[fruit]: out, ...fruits}) => [out, fruits];
const [fruit, fruits] = pick('banana', basket);
console.log(fruit);
console.log(fruits);
console.log(basket);
<script>const basket = { banana: 1, apple: 2, strawberry: 3 };</script>
This also works for non-dynamic choices and also if you want to have the variable name same as the fruit name
const myObject = { banana: 1, apple: 2, strawberry: 3 };
const { banana, ...theRest } = myObject;
console.log(banana); // 1
console.log(theRest);
本文标签: destructuringJavascript object destructure with property name in variableStack Overflow
版权声明:本文标题:destructuring - Javascript object destructure with property name in variable - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743610376a2509918.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论