+ 1
Javascript conditions
i'm searching for a list of the conditions of javascript(ex. ==). sorry for bad english i'm searching for "contains" condition in javascript
1 Antwort
+ 23
== equal value
=== equal data type and value
<= less or equal
>= greater or equal
< less
> greater
|| or
&& and
| bitwise or
& bitwise and
! not
^ xor
~
(*these are called operators*)