Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 28, 2021 10:10 pm GMT

Use Destructuring Assignment to Assign Variables from Nested Objects

  • Let's take this for example:
const LOCAL_FORECAST = {  yesterday: { low: 61, high: 75 },  today: { low: 64, high: 77 },  tomorrow: { low: 68, high: 80 }};
  • Here's how to extract the values of object properties and assign them to variables with the same name:
const { today: { low, high }} = LOCAL_FORECAST;
  • And here's how you can assign an object properties' values to variables with different names:
const { today: { low: lowToday, high: highToday }} = LOCAL_FORECAST;
console.log(lowToday); will display 64

We just replace the two assignments with an equivalent destructuring assignment. It should still assign the variables lowToday and highToday the values of today.low and today.high from the LOCAL_FORECAST object.


Original Link: https://dev.to/rthefounding/use-destructuring-assignment-to-assign-variables-from-nested-objects-28km

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To