Introducing Else Statements

When a condition for an if statement is true, the block of code following it is executed. What about when that condition is false? Normally nothing would happen. With an else statement, an alternate block of code can be executed.

if (num > 10) {
return “Bigger than 10”;
} else {
return “10 or Less”;
}

Instructions

Combine the if statements into a single if/else statement.

My Solution

function myTest(val) {
var result = “”;

if (val > 5) {
result = “Bigger than 5”;
} else {
result = “5 or Smaller”;
}
return result;
}

Challenge: http://www.freecodecamp.com/challenges/introducing-else-statements

Leave a comment