conditions in javascript code example

Example 1: else if javascript

if (condition1) {
  // code to be executed if condition1 is true
} else if (condition2) {
  // code to be executed if the condition1 is false and condition2 is true
} else {
  // code to be executed if the condition1 is false and condition2 is false
}

Example 2: javascript if statement

if (5 < 10) {
	console.log("5 is less than 10");
} else {
	console.log("5 is now bigger than 10")
}

Example 3: javascript conditional

// example:
age >= 18 ? `wine` : `water`;

// syntax:
// <expression> ? <value-if-true> : <value-if-false>

Example 4: how to shorten conditional statements javascript

var canDrive = age > 16 ? 'yes' : 'no'

Example 5: javascript if elseif

if (condition) {

} else if (other_condition) {

} else {

}

Tags:

Cpp Example