used in logical statements to determine equality or difference between variables
- == equal to z == 9 false
- === equal value and equal type z=== 3 true
- != not equal z!=6 true
- !== not equal value or not equal typ u !== "9" true
- > greater than i > 5 false
- < less than i < 5 true
- >= greater than or equal to i >= 5 false
- <= less than or equal to
No comments:
Post a Comment