Created
May 15, 2017 07:38
-
-
Save Reedef/cb09a69d5116a240a54153774c4c6b9b to your computer and use it in GitHub Desktop.
Init empty Array width default value
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
function range(len){ | |
return Array.apply(null, Array(len)).map(function (v,k) { return k }); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment