** Evaluationg condtions **
- == means is equal to
- ! = means not equal to
- === means strict equal to
- !== means strict not equal to
** Logical operators ** comparison operators ==> single value true or false Logical operators allow you to compare the results of more than one comparison operators
&& means logical AND
| | means logical OR
! means logical NOT
-
FOR : If you need to run a code for a specific number of times
-
WHILE : If you don't know how many times you need the code to be run
-
DO WHILE : it will always run the statement in the curly braces at least once even if the condition evaluate false