scrimba
Challenge Weeks
๐ŸŒ Earth Day on Scrimba (April 2022)
๐ŸŒ
๐ŸŒ Day 1: Earth Poem
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

๐ŸŒ Day 1: Earth Poem
AboutCommentsNotes
๐ŸŒ Day 1: Earth Poem
Expand for more info
index.js
run
preview
console
// POEM: Forests are green, oceans are blue. Keep the earth clean, for me and for you

const obj = {
color1: "green",
color2: "blue",
planet: "Earth",
adjective: "clean",
emojis: ["๐Ÿš‚", "๐ŸŒ", "๐Ÿ›ผ", "๐Ÿฉ", "๐Ÿ–", "๐ŸŽ ", "๐Ÿ”ฎ"],
sentence: function() {
//maybe some code here ๐Ÿค”
}
};

// Task: Changing only the code ABOVE (lines 1-15), complete the poem and render it on the page.

// stretch goal 1๏ธโƒฃ: Render the most suitable emoji from the emojis array in the object somewhere in our poem.

// stretch goal 2๏ธโƒฃ: Without changing the object declaration above, change sea color to purple!

// stretch goal 3๏ธโƒฃ: Without changing the CSS file, style the values added from the object.





Console
/index.html
-2:16