Skip to content

SaishJ/JavaScript-Beginner-to-Advanced

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Operators

Basic Operators

+ Addition
- Subtraction
* Multiplication
/ Division
() Grouping operator
% Modulus (remainder)
++ Increment numbers
-- Decrement numbers

Comparision operator

== Equal to
=== Equal value and equal type
!= Not equal
!== Not equal value or not equal type
> Greater than
< Less than
>= Greater than or equal to
<= Less than or equal to

Logical operator

&& Logical and
Logical or
! Logical not

Bitwise operators

Bitwise operators in Javascript are mostly used for numerical conversions/computations.

& AND statement
OR statement
~ NOT
^ XOR
<< Zero fill left shift
>> Signed right shift
>>> Zero fill right shift

About

Complete Path to JavaScript Beginner to Advanced

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published