Created
May 23, 2020 05:28
-
-
Save hebertcisco/aaa3b7098642a3f6a7ccd22ca1d33121 to your computer and use it in GitHub Desktop.
loop for of loops through iterative objects (including Array, Map, Set, the arguments object and so on), calling a custom function with instructions to be executed for the value of each distinct object.
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
const mySkills = [ | |
"C#", | |
"JavaScript", | |
"TypeScript", | |
"HTML", | |
"CSS3", | |
"Angular", | |
"ReactJS", | |
"React Native", | |
"NodeJs", | |
"MongoDB", | |
"Python", | |
"C", | |
]; | |
for (let item of mySkills) { | |
console.log(item) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment