- Getting Started
- Variables and Types
- Arrays
- Manipulating Arrays
- Operators
- Conditions
- Loops
- Objects
- Functions
- Callbacks
-
Object-Oriented JavaScript - Function Context
- Inheritance
Based on Javascript Tutorial
Conditions
The if
statement
The if
statement allows us to check if an expression is equal to true
or false
, and execute different code according to the result.
For example, if we want ask the user whether his name is "John", we can use the confirm
function.
if (confirm("Are you John Smith?"))
{
print("Hello John, how are you?");
} else {
print("Then what is your name?");
}
It is also possible to omit the else
keyword if we only want to execute a block of code only if a certain expression is true.
To evaluate whether two variables are equal, the ==
operator is used.
For example:
var myNumber = 42;
if (myNumber == 42)
{
print("The number is correct.");
}
Inequality operators can also be used to evaluate expressions. For example:
var foo = 1;
var bar = 2;
if (foo < bar)
{
print("foo is smaller than bar.");
}
Two or more expressions can be evaluated together using logical operators to check if two expressions evaluate to true
together, or at least one of them. To check if two expressions both evaluate to true
, use the AND operator &&
. To check if at least one of the expressions evaluate to true
, use the OR operator ||
.
var foo = 1;
var bar = 2;
var moo = 3;
if (foo < bar && moo > bar)
{
print("foo is smaller than bar AND moo is larger than bar.");
}
if (foo < bar || moo > bar)
{
print("foo is smaller than bar OR moo is larger than bar.");
}
The NOT operator !
can also be used likewise:
var notTrue = false;
if (!notTrue)
{
print("not not true is true!");
}
The switch
statement
The switch
statement is similar to the switch
statement from the C programming language, but also supports strings. The switch
statement is used to select between more than two different options, and to run the same code for more than one option. For example:
var rank = "Commander";
switch(rank)
{
case "Private":
case "Sergeant":
print("You are not authorized.");
break;
case "Commander":
print("Hello commander! what can I do for you today?");
break;
case "Captain":
print("Hello captain! I will do anything you wish.");
break;
default:
print("I don't know what your rank is.");
break;
}
In this example, "Private" an "Sergeant" both trigger the first sentence, "Commander" triggers the second sentence and "Captain" triggers the third. If an unknown rank was evaulated, the default
keyword defines the action for this case (optional). We must use the break
statement between every code block to avoid the switch
from executing the next code block.
Using the switch
statement in general is not recommended, because forgetting the break
keyword causes very confusing results.
Challenge
Construct an if
inside the checkNumber
function statement that checks if the number myNumber
is equal to 42. If it is, the function must print
out using the word correct
. If myNumber is not equal to 42, the function must print out the word incorrect
.
Please sign in or sign up to submit answers.
Alternatively, you can try out Learneroo before signing up.