Skip to content

Instantly share code, notes, and snippets.

@is8r
Last active November 18, 2016 02:19
Show Gist options
  • Select an option

  • Save is8r/8a4b32a0ad1f939daaa108cd50b0ca45 to your computer and use it in GitHub Desktop.

Select an option

Save is8r/8a4b32a0ad1f939daaa108cd50b0ca45 to your computer and use it in GitHub Desktop.
連番の配列を作る配列のprototype拡張
Array.prototype.arrange = function(n){
return Array.from(new Array(n)).map((v,i) => i)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment