Skip to content

Instantly share code, notes, and snippets.

@zmts
Last active January 10, 2021 19:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save zmts/8468c3500b0866c0fb3ca09e7cf7e5bc to your computer and use it in GitHub Desktop.
Save zmts/8468c3500b0866c0fb3ca09e7cf7e5bc to your computer and use it in GitHub Desktop.
Get index in for of

Get index in for of

for (const [index, value] of ['a', 'b', 'c'].entries()) {
  console.log(index, value)
}

/*
0 "a"
1 "b"
2 "c"
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment