Skip to content

Instantly share code, notes, and snippets.

@allencoded
Created June 3, 2017 19:48
Show Gist options
  • Save allencoded/da773f287db1d14d6090ed4e87454bfc to your computer and use it in GitHub Desktop.
Save allencoded/da773f287db1d14d6090ed4e87454bfc to your computer and use it in GitHub Desktop.
Destructure Blog Demo
const response = [
{
type: 'truck',
size: 'large',
},
{
type: 'car',
size: 'small',
},
];
const [truck, car];
console.log(truck)
console.log(car);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment