Skip to content

Instantly share code, notes, and snippets.

@woliveiras
Created January 12, 2017 09:20
Show Gist options
  • Save woliveiras/8090f10c8db4d799921dd4476bb516e1 to your computer and use it in GitHub Desktop.
Save woliveiras/8090f10c8db4d799921dd4476bb516e1 to your computer and use it in GitHub Desktop.
const size = (x, y) => {
return [x, y];
};
const [width, height] = size("50", "100");
console.log(width); //50
console.log(height); //100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment