Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Created April 18, 2018 08:45
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/b693572c0427e3849513718952c85253 to your computer and use it in GitHub Desktop.
Save gladchinda/b693572c0427e3849513718952c85253 to your computer and use it in GitHub Desktop.
const person = {
name: 'John Doe',
country: 'Canada'
};
// Assign default value of 25 to age if undefined
const { name, country, age = 25 } = person;
// Here I am using ES6 template literals
console.log(`I am ${name} from ${country} and I am ${age} years old.`);
// I am John Doe from Canada and I am 25 years old.'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment