- We have :
- '=='
- '!='
- '!=='
- '==='
- '<'
- '>'
- '<='
- '>='
- The priority of parentheses must be observed'()'
- from left to right
like: (var == '1' && var < '10')
- It works on checking the condition if it is true entry into the block.
- type of loops:
- for
- while
- do while
- when you have a specific number of runs.
- The most common.
- The counter(var) often starts at zero.
- Every time one counter increases.
- When the condition becomes "f" out of the block.
- The meter usually starts with 1.
- The increase over the counter is in the block.
- Statement 1: '= +' Used to add new content to var 'msg' every run.
- Statement 2: Increase counter variable by 1.


