Operators in JavaScript

January 29, 2025 No Comments » Hits : 278





Assignment Operators

OperatorDescription
=Assign
+=Add and assign. For example, x+=y is the same as x=x+y.
-=Subtract and assign. For example, x-=y is the same as x=x-y.
*=Multiply and assign. For example, x*=y is the same as x=x*y.
/=Divide and assign. For example, x/=y is the same as x=x/y.
%=Modulus and assign. For example, x%=y is the same as x=x%y.

Comparison Operators

OperatorDescription
==Is equal to
===Is identical (is equal to and is of the same type)
!=Is not equal to
!==Is not identical
>Greater than
>=Greater than or equal to
<Less than
<=Less than or equal to

Logical/boolean Operators

OperatorDescription
&&and
||or
!not

String Operators

OperatorDescription
=Assignment
+Concatenate (join two strings together)
+=Concatenate and assign