Skip to content

Instantly share code, notes, and snippets.

@shgysk8zer0
Last active August 31, 2015 18:03
Show Gist options
  • Select an option

  • Save shgysk8zer0/6ccbed999d0d52d0e5d3 to your computer and use it in GitHub Desktop.

Select an option

Save shgysk8zer0/6ccbed999d0d52d0e5d3 to your computer and use it in GitHub Desktop.
Array.loop using Generators
Array.prototype.loop = function* (times = Infinity) {
while (times-- > 0) {
for (let el of this) {
yield el;
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment