Created
January 13, 2020 14:13
-
-
Save cesarkohl/ad2fe618764a1695c68517a624d19644 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
| var names = ['adam', 'brian', 'charles']; | |
| for (var i = 0; i <names.length; i ++) { | |
| console.log (names [i]); | |
| } | |
| // adam, brian, charles |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment