Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
403 B
18
Indexable
Never
Operators : 

1. Assignment :-

=
+=
-=
/=
%=
*=

2. Arithmetic operator:-

+ 
-
*
** (exponential)
/
%
++
--

3. Ternary opertor

true ? "Javascript" : "Java";

4. Comparison operator: 

==
===
!=
!==
>
<
>=
<=
?

5. String operator

6. Logical operator

&&
||
!


7.Bit wise operator

&
|
~
^
<<
>>


8. Type operators

typeof
instanceof