Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created February 17, 2019 23:55
Show Gist options
  • Save Kamilnaja/b4349516bb940eaf140070699df21ef9 to your computer and use it in GitHub Desktop.
Save Kamilnaja/b4349516bb940eaf140070699df21ef9 to your computer and use it in GitHub Desktop.
array range js
Array.prototype.range = function(start, stop) {
let d = [];
for (let i = start; i <= stop; i++) {
d.push(i);
}
return d;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment