Last active
October 2, 2018 05:31
-
-
Save heryvandoro/d17b51e21663c7ffc2940cd8c18d0fe2 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
let numbers = [10, 20, 30]; | |
numbers.forEach(number => { | |
console.log(number); | |
}); | |
/* Output : | |
10 | |
20 | |
30 | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment