Skip to content

Latest commit

 

History

History

destructuring-objects

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

JavaScript - Destructuring objects

It allows us to extract properties from an object and assign them to individual variables.

  • Syntax:
    const {username, email} = ironman;