scrimba
Note at 2:25
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 2:25
AboutCommentsNotes
Note at 2:25
Expand for more info
index.js
run
preview
console
// Ternary Operations
const textDisplay = document.getElementById('text')
const emoticon = document.getElementById('emoticon');
const isGameOver = false;

// if (isGameOver) {
// textDisplay.innerHTML = 'Oh no! You lost!'
// } else {
// textDisplay.innerHTML = 'YAY! You WON!'
// }

emoticon.innerHTML = isGameOver ? '😡' : '😁';
textDisplay.innerHTML = isGameOver ? 'Oh no! You lost!' : 'YAY! You WON!'
Console
/index.html
LIVE