Score: 0 / 0 answered
Progress: 0 of 190 qs
time elap: 00:00
Question 1: What will be the value of `newName` after the following code is executed?
const person = { name: 'John' }; const { name: newName } = person;
Subject: Sets 14 Functional Programming 15 ES6 Syntax Destructuring in JavaScript Intermediate Level
Difficulty: Medium