Skip to content

Instantly share code, notes, and snippets.

@Reedef
Created May 15, 2017 07:38
Show Gist options
  • Save Reedef/cb09a69d5116a240a54153774c4c6b9b to your computer and use it in GitHub Desktop.
Save Reedef/cb09a69d5116a240a54153774c4c6b9b to your computer and use it in GitHub Desktop.
Init empty Array width default value
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