scrimba
Learn Basic JavaScript
Introducing Else If Statements
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

Introducing Else If Statements
AboutCommentsNotes
Introducing Else If Statements
Expand for more info
index.js
run
preview
console
function testElseIf(val) {
if (val > 10) {
return "Greater than 10";
}

if (val < 5) {
return "Smaller than 5";
}

return "Between 5 and 10";
}

// Change this value to test
testElseIf(7);
Console
index.html
-0:58