Not sure where to start?
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
/review
Karma
scrimba
// 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 containerconst myEmojis = ["👨💻", "⛷", "🍲"]const emojiContainer = document.getElementById("emojiContainer")for (let i = 0; i < myEmojis.length; i++) { // write your code here}