Conditional Statements Flashcards
What does if, else if and else statement mean?
if: gives a condition
else: gives the option if condition is not true
else if: gives additional options
Note: else must be the last option in a conditional statement
What follows after if? What does the condition evaluate?
- parenthesis for arguments (arg-n…)
- if condition is true, code in block statement executes
- if not, it is ignored.
What is { }? When is it used?
Initiates a block statement. Used after conditional statement to run block of code within brackets.
What is binary decisions?
yes-or-no questions. A decision tree in programming
What are comparison values?
- Less than: <
- Greater than: >
- Less than or equal to: <=
- Greater than or equal to: >=
- Is equal to: ===
- Is not equal to: !==
‘apples’ === ‘oranges’
What will be the boolean output? Why?
false, strictly equal will compare data types and the content of the data types
What are logical operators?
- The and operator ( && )
- the or operator ( || )
- the not operator, AKA bang operator ( ! )
What is special about || operator?
Think of the operator as or in a statement. If either side of the statement is true, boolean output will be true
Note: If first statement is true, the second statement wont be checked.
//evaluates to true !0 !NaN !null !undefined Why?
Since they are falsey
! + [] is converted internally into ! + String([]) ! + "" What is the output?
//it evaluates true because ! on empty string returns true Note: + operator only works on string and numbers, when we perform a binary operation on an arry, then the array is converted to a string.
What are falsy values? What is the boolean value if not falsy?
-0
-Empty strings like “” or ‘’
null which represent when there is no value at all
Note: space in string will still be falsy
-undefined which represent when a declared variable lacks a value
-NaN, or Not a Number
Note: If not falsy, value will be truthy
What is the output? let numberOfApples = 0;
if (numberOfApples){ console.log('Let us eat apples!'); } else { console.log('No apples left!'); }
// Prints ‘No apples left!’
What is a ternary operator?
What does it look like?
short-hand to simplify if...else statement using ( ? ) and ( : ) Ex) let isNightTime = true;
if (isNightTime) { console.log('Turn on the lights!'); } else { console.log('Turn off the lights!'); } with ternary operators:
isNightTime ? console.log('Turn on the lights!') : console.log('Turn off the lights!'); /* If the condition evaluates to true, the first expression executes. If the condition evaluates to false, the second expression executes. */
When is a switch statement best used for?
-When you have to write multiple else if statements
Ex)
let groceryItem = ‘papaya’;
switch (groceryItem) { case 'tomato': console.log('Tomatoes are $0.49'); break; case 'lime': console.log('Limes are $1.49'); break; case 'papaya': console.log('Papayas are $1.29'); break; default: console.log('Invalid item'); break; }
What does the keyword ( break ) do?
-to exit the block and not execute any more code or check any other cases inside the code block. // Note: Without break keywords, the first matching case will run, but so will every subsequent case regardless of whether or not it matches—including the default -At the end of each switch statement, there is a default statement. If none of the cases are true, then the code in the default statement will run.