Created
December 23, 2022 20:06
-
-
Save audunolsen/d3eea85f85fdecfc00f60e8717f1ffa7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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