Skip to content

Instantly share code, notes, and snippets.

@imaustink
Last active December 19, 2016 17:55
Show Gist options
  • Save imaustink/5fe30fc838d10dba0c7d9b4e651d8ed4 to your computer and use it in GitHub Desktop.
Save imaustink/5fe30fc838d10dba0c7d9b4e651d8ed4 to your computer and use it in GitHub Desktop.
ES6 is fun
class Pages extends Array{
constructor(){
super().push.apply(this, arguments);
this.i = 0;
}
get next(){
return this[this.i++];
}
}
var p = new Pages(1,2,3,4,5,6,7,8,9,10);
p.next;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment