scrimba
Frontend Career Path
Making websites interactive
Blackjack
Aside: The OR 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
Aside: The OR operator (||)
Expand for more info
index.js
run
preview
console
let hasCompletedCourse = true
let givesCertificate = true

if (hasCompletedCourse === true && givesCertificate === true) {
generateCertificate()
}

function generateCertificate() {
console.log("Generating certificate....")
}

Console
"Generating certificate...."
,
/index.html
-3:02