Skip to content

Instantly share code, notes, and snippets.

@minitech
Created January 31, 2013 17:21
Show Gist options
  • Save minitech/4684528 to your computer and use it in GitHub Desktop.
Save minitech/4684528 to your computer and use it in GitHub Desktop.
Ranges for JavaScript!
for(var i=0;i<1e3;i++)Object.defineProperty(Number.prototype,'_'+i,{get:function(i){return function(){for(var r=[],j=~~this;j<=i;j++)r.push(j);return r;};}(i)});
1.._20.forEach(function(i) {
console.log(i);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment