Created
July 17, 2019 15:38
-
-
Save deleteman/f1fc7dd6666f75d6fc9d458953ec50ee to your computer and use it in GitHub Desktop.
This file contains hidden or 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
a = ["hello", "world"] | |
a.forEach ( (elem, idx, arr) => { | |
console.log(elem, "at: ", idx, "inside: ", arr) | |
}) | |
/* | |
hello at: 0 inside: [ 'hello', 'world' ] | |
world at: 1 inside: [ 'hello', 'world' ] | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment