Skip to content

Instantly share code, notes, and snippets.

@deleteman
Last active July 17, 2019 15:21
Show Gist options
  • Save deleteman/79a9319894cf29dfc797c37b4b59d5c5 to your computer and use it in GitHub Desktop.
Save deleteman/79a9319894cf29dfc797c37b4b59d5c5 to your computer and use it in GitHub Desktop.
let myArr = ["hello", "world"]
for([idx, value] of myArr.entries()) {
console.log(idx, '=', value)
}
/*
0 '=' 'hello'
1 '=' 'world'
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment