Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Last active April 18, 2018 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gladchinda/4089f56271b15bf876fc4660b969e052 to your computer and use it in GitHub Desktop.
Save gladchinda/4089f56271b15bf876fc4660b969e052 to your computer and use it in GitHub Desktop.
const student = {
firstname: 'Glad',
lastname: 'Chinda',
country: 'Nigeria'
};
// Object Destructuring
const { firstname, lastname, country } = student;
console.log(firstname, lastname, country); // Glad Chinda Nigeria
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment