- is equal to : == this operators compares two valus to see if they are the same
- is not equal to :!= this operators compares two valus to see if they are not the same
-Type of varible :
- numbers
- string
- booleans
- Greaten than :> this operate cheacks if number on left is greate than number on right.
- less than :< this operate cheacks if number on right is greate than number on left. -- Greaten than or equal to :>= this operate cheacks if number on left is greate than or equal number on right.
- less than or equal to :<= this operate cheacks if number on right is greate than number on left.
logical operater:
- And :&& to test more than one conditional.
- oR:|| to test at least one conditional.
- Not :! takes a signal boolean value and inverts it.
Loop counters
- for loop : run a specified numbers of times.
- inteliazation : create a value and set it to zero
- coundition :run untial the counter resches a specified number. 3.update: addes one to the counter .


