scrimba
Frontend Career Path
Making websites interactive
Blackjack
Write your first logical 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

Write your first logical operator
AboutCommentsNotes
Write your first logical operator
Expand for more info
index.js
run
preview
console
let hasSolvedChallenge = false
let hasHintsLeft = false

// Create an if statement that checks that both variables are false.
// If so, run the showSolution() function

function showSolution() {
console.log("Showing the solution....")
}


Console
/index.html
-2:04