I like to write code, play EAFC, hate on social media and teach on Youtube (oddstack)! I make cool web stuff, check them out...
1constmyHobbies=['☕','💻','🍷', '🎵', '🍧', '🍗' ]
2 for(let item in myHobbies ) {
3 console . log (item );
4 }
5 for(let item of myHobbies ) {
6 console . log (item );
7 }
8 // 1,2,3,4,5
9 // ☕, 💻, 🍷, 🎵, 🍧, 🍗