scrimba
Your personality in emojis
My Emojis - grabbing the emojiContainer
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

My Emojis - grabbing the emojiContainer
AboutCommentsNotes
My Emojis - grabbing the emojiContainer
Expand for more info
index.js
run
preview
console
// Grab the emojiContainer div and store it in a variable. Log it to the console

const myEmojis = ["👨‍💻", "⛷", "🍲"]

for (let i = 0; i < myEmojis.length; i++) {
// console.log(myEmojis[i])
}
Console
/index.html
-1:35