Skip to content

Instantly share code, notes, and snippets.

@audunolsen
Created December 23, 2022 20:06
Show Gist options
  • Save audunolsen/d3eea85f85fdecfc00f60e8717f1ffa7 to your computer and use it in GitHub Desktop.
Save audunolsen/d3eea85f85fdecfc00f60e8717f1ffa7 to your computer and use it in GitHub Desktop.
// hmmmmm loop arbitrary iteration count
for (const [index] of Array(len).entries()) {
console.log(index)
}
for (const index of Array(len).keys()) {
console.log(index)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment