Created
April 3, 2019 13:31
-
-
Save gaalha/c4626494d901f7b7f82deba4938fad4f 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
var array1 = ['a', 'b', 'c']; | |
array1.forEach(function(element) { | |
console.log(element); | |
}); | |
// expected output: "a" | |
// expected output: "b" | |
// expected output: "c" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment