Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 204 Bytes

File metadata and controls

8 lines (6 loc) · 204 Bytes

JavaScript - Destructuring objects

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

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