Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Created July 30, 2018 23:55
Show Gist options
  • Select an option

  • Save gladchinda/7de5be4c0dc6ee524d4e8db4cc2e8052 to your computer and use it in GitHub Desktop.

Select an option

Save gladchinda/7de5be4c0dc6ee524d4e8db4cc2e8052 to your computer and use it in GitHub Desktop.
// OLD METHOD
const name = country.name;
const region = country.region || 'the world';
const code2 = country.codes.cca2;
const dialcode = country.codes.dialcode;
const cities = country.cities;
// ES6 DESTRUCTURING
const {
name,
region = 'the world',
codes: { cca2: code2, dialcode },
cities
} = country;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment