HomeJavaScriptJavaScript Tutorial #8 – Operators in JavaScript

JavaScript Tutorial #8 – Operators in JavaScript

JavaScript supports different types of operators that includes

Assignment Operator

JavaScript supports different types if Assignment Operators like
=
+=
-=
*=
/=
%=

Arithmetic Operator

+ – Add Operator
– – Subtract Operator
* – Multiplication
/ – Division
% – Modulus
++ – Increment
— – Decrement

Logical Operator

The below Logical operators are supported in JavaScript
&& – Logical AND
|| – Logical OR
! – Logical NOT

Comparison Operator

The below comparison operators are supported in JavaScript.

==
!=
>
<
>=
<=

Conditional Operator

? :

typeof Operator

Bitwise Operators:

&
|
^
~
<<
>>
>>>

Leave a Reply

You May Also Like

You might want to filter an array in JavaScript by passing the filter criteria and return the filtered array. In...
You can flatten a 2-D array in JavaScript using the concat and apply method as shown in the below code...
Assume that you have an angle in degree and you wish to convert it to radians in JavaScript so that...