Created
January 12, 2017 09:20
-
-
Save woliveiras/8090f10c8db4d799921dd4476bb516e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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