This wiki is for the exclusive use of my friends and colleagues. Account creation and anonymous editing have been turned off.

If you are a friend or colleague of mine, and would like to participate in this project, please send me a message.

If you find these pages useful, please donate to help cover server costs. Thanks!

Difference between revisions of "Comparison Operators (JavaScript)"

From OdleWiki
(Created page with "Comparison operators compare strings, numbers, or booleans. {| class="wikitable" |- | > || Greater than |- | < || Less than |- | <= || Les...")
 
m (Added category)
 
Line 15: Line 15:
 
| !== || Not equal to
 
| !== || Not equal to
 
|}
 
|}
 +
 +
[[Category:JavaScript]]

Latest revision as of 18:06, 31 December 2015

Comparison operators compare strings, numbers, or booleans.

> Greater than
< Less than
<= Less than or equal to
>= Greater than or equal to
=== Equal to
!== Not equal to