scrimba
Frontend Career Path
Essential JavaScript concepts
JS Mini Projects
The Ternary Operator
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

AboutCommentsNotes
The Ternary Operator
Expand for more info
index.js
run
preview
console
const exerciseTimeMins = 20

let message = ''

if (exerciseTimeMins < 30) {
message = 'You need to try harder!'
}
else {
message = 'Doing good!'
}

console.log(message)
Console
/index.html
-4:01