You have already completed these exercises!
Do you want to take them again?
You completed the React ES6 Destructuring Exercises from W3Schools.com
Share on:
Consider this Array:
const family = ['Jane', 'John', 'Mike'];
What is a correct syntax to put 'Mike' as a value to x?
x
const [x] = family;
const [,x] = family;
const [,,x] = family;