scrimba
Learn Imba
Conditionals
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
Conditionals
Expand for more info
index.imba
run
preview
console
let num = 4 # number of habits to complete
let done = 4 # number that have been completed
let msg = ""

console.log "Are we done yet?"

# if / else

# trailing conditionals

# unless

# and / or

# one line conditional

console.log msg
Console
/index.html
-7:42