scrimba
21 web dev tips for 2021 🎇
Tip 11: Optional Function Execution
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

Tip 11: Optional Function Execution
AboutCommentsNotes
Tip 11: Optional Function Execution
Expand for more info
index.js
run
preview
console
// Optional Function Execution
const mouth = document.getElementById('mouth')

let isHappy = true
if (isHappy) {
mouth.classList.add('smile')
} else {
mouth.classList.add('frown')
}


// Mini Challenge: Can you make the face close one eye if he is feeling flirty?
Console
/index.html
-4:39