Skip to content

Instantly share code, notes, and snippets.

@Taohid0
Created May 30, 2019 08:07
Show Gist options
  • Save Taohid0/42da2b7c8856bb4ec12e10a8e0d59eb3 to your computer and use it in GitHub Desktop.
Save Taohid0/42da2b7c8856bb4ec12e10a8e0d59eb3 to your computer and use it in GitHub Desktop.
const obj = { name: 'Taohid', age: '25' };
const {name:myName,age:myAge} = obj;
console.log(myName,myAge);
//Taohid 25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment