Conditional Statements Flashcards

1
Q

What does if, else if and else statement mean?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What follows after if? What does the condition evaluate?

A
  • parenthesis for arguments (arg-n…)
  • if condition is true, code in block statement executes
  • if not, it is ignored.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is { }? When is it used?

A

Initiates a block statement. Used after conditional statement to run block of code within brackets.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is binary decisions?

A

yes-or-no questions. A decision tree in programming

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are comparison values?

A
  • Less than: <
  • Greater than: >
  • Less than or equal to: <=
  • Greater than or equal to: >=
  • Is equal to: ===
  • Is not equal to: !==
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

‘apples’ === ‘oranges’

What will be the boolean output? Why?

A

false, strictly equal will compare data types and the content of the data types

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are logical operators?

A
  • The and operator ( && )
  • the or operator ( || )
  • the not operator, AKA bang operator ( ! )
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is special about || operator?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
//evaluates to true
!0
!NaN
!null
!undefined
Why?
A

Since they are falsey

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q
! + [] 
is converted internally into
! + String([])
! + "" 
What is the output?
A
//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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are falsy values? What is the boolean value if not falsy?

A

-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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q
What is the output?
let numberOfApples = 0;
if (numberOfApples){
   console.log('Let us eat apples!');
} else {
   console.log('No apples left!');
}
A

// Prints ‘No apples left!’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is a ternary operator?

What does it look like?

A
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. */
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

When is a switch statement best used for?

A

-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;
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does the keyword ( break ) do?

A
-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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly