scrimba
Note at 0:38
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

Note at 0:38
AboutCommentsNotes
Note at 0:38
Expand for more info
index.js
run
preview
console
// Task:
// Write a function to display a random greeting in the card.

let greetingDisplay = document.getElementById("greeting-display");
const btn = document.getElementById("btn");

const greetings = [
"Santa Claus is coming to town!",
"We wish you a Merry Christmas!",
"Happy holidays!",
"Ho, ho, ho! Merry Christmas!",
"Jingle all the way!",
];

function writeGreeting(wishesArr) {
return greetingDisplay.innerHTML = wishesArr[Math.floor(Math.random() * wishesArr.length)];
};

// old, gave error: EventTarget.addEventListener: Argument 2 is not an object:
// btn.addEventListener("click", writeGreeting(greetings));
btn.onclick = function() {writeGreeting(greetings)};

// Stretch goals:
// - Allow the user to input to and from names.
// - Add an input for custom messages.
Console
TypeError: window.onload is not a function (/index.js:22)
,
/index.html
LIVE