DEV Community

Discussion on: A Simple Guide to Javascript Destructuring

Collapse
 
davidyaonz profile image
David Yao

Added quotation mark for Trump in the example just in case you haven't seen the typo. [
firstPerson,secondPerson,...theRest] = ["Ayobami", "Bush", "Obama", "Trump"];

console.log(firstPerson) // Ayobami
console.log(secondPerson)// Bush
console.log(theRest) // ["Obama", "Trump"]

Collapse
 
codingnninja profile image
Ayobami Ogundiran

Wow! Thanks for spotting the typo. I just fixed it.