Skip to content

Instantly share code, notes, and snippets.

@ShaileshPrajapati-BTC
Created August 17, 2018 10:09
Show Gist options
  • Save ShaileshPrajapati-BTC/b2f54f3196e73c6cab303ff2952fa53d to your computer and use it in GitHub Desktop.
Save ShaileshPrajapati-BTC/b2f54f3196e73c6cab303ff2952fa53d to your computer and use it in GitHub Desktop.
const student = {
firstname: 'Shailesh',
lastname: 'Prajapati',
country: 'India'
};
// 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