Skip to content

Instantly share code, notes, and snippets.

@cmoody
Created March 31, 2016 21:15
Show Gist options
  • Save cmoody/43a626211dbbcce257895fa8993141be to your computer and use it in GitHub Desktop.
Save cmoody/43a626211dbbcce257895fa8993141be to your computer and use it in GitHub Desktop.
const data = {
Place: {
Name: 'Veracruz Tacos',
Address: '1704 E Cesar Chavez Austin, TX 78702',
Phone: '512.981.1760'
}
};
let { Name, Address, Phone, PriceRange } = data.Place;
console.log(Name);
console.log(Address);
console.log(Phone);
console.log(PriceRange);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment