js conditionals code example

Example 1: using if statements in javascript

if (expression) {
   Statement(s) to be executed if expression is true
} else {
   Statement(s) to be executed if expression is false
}

Example 2: if statement

if( name = 'george washington'):
	print("You have the same name as the first president of the United States")
    // python 
else:
	print("You do not have the same name as George Washington")

Example 3: javascript conditional ? :

//XCal - Javascript Inline Conditional Sample (condition brackets only for clarity)
//                           v-? = Conditional Operator
//                           v                  v-: = True/False result value separator
//Format =    v-Condition-v  ?  v-When True-v   :  v-When False-v
var vResult = (null == null) ? 'Condition True' : 'Condition False';
//vResult is now 'Condition True';

Example 4: javascript conditional

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

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