scrimba
Learn Basic JavaScript
Introducing Else 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 Statements
AboutCommentsNotes
Introducing Else Statements
Expand for more info
index.js
run
preview
console
function testElse(val) {
var result = "";
// Only change code below this line

if (val > 5) {
result = "Bigger than 5";
}

if (val <= 5) {
result = "5 or Smaller";
}

// Only change code above this line
return result;
}

// Change this value to test
testElse(4);
Console
index.html
-0:47