scrimba
Your personality in emojis
My Emojis - Rendering the Emojis
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 - Rendering the Emojis
AboutCommentsNotes
My Emojis - Rendering the Emojis
Expand for more info
index.js
run
preview
console
// Render the emojis as <span> tags in the emojisContainer <div>

// Hints: you can achieve this by creating an span with createElement(),
// setting its content with textContent, and using append() to append it to the container

const myEmojis = ["👨‍💻", "⛷", "🍲"]
const emojiContainer = document.getElementById("emojiContainer")

for (let i = 0; i < myEmojis.length; i++) {
// write your code here
}
Console
/index.html
-1:37