0% found this document useful (0 votes)
8 views11 pages

Schedular and Its Types

scheduler and its type operating system

Uploaded by

UTSAV TIWARY
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views11 pages

Schedular and Its Types

scheduler and its type operating system

Uploaded by

UTSAV TIWARY
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 11

JavaScript

Operators

NAME:-PRIYA KUMARI
BATCH:-BCA(PPU)-B1
ID:-9844
ROLL:-B-18
GIVEN BY:-RAM LAKHAN SIR
JAVASCRIPT OPERATOR

 JavaScript operators are symbols used to perform


specific mathematical, comparison, assignment,
and logical computations on operands.

 They are fundamental elements in JavaScript


programming, allowing developers to manipulate
data and control program flow efficiently.
Types of JavaScript Operators

1 Arithmetic operator
2.Assignment operator
3.Comparision operator
4.Logical operator
5.String operator
6.Bitwise operator
7.Miscellaneous operator
Arithmetic Operator
• JavaScript Arithmetic Operators perform
arithmetic operations: addition (+),
subtraction (-), multiplication (*), division
(/), modulus (%), and exponentiation (**).

Operator Description

+ add to numeric operand.


_ subtract right operand from left.

* multiply two numeric operands.


/ divide left operand by right operand.
% Modulas operator returns remainder

** increment operator increase operand value by one

-- Decrement operator decrease value by one


Assignment Operator
• JavaScript provides the assignment operators to assign values to
variables with less key strokes.

Some Assignment operators are:-

1. =
2. +=
3. -=
4. *=
5. /=
6. %=
avaScript provides comparison operators that compare two operands and return a boolean value true or false.

Comparision Operator
Javascript provides comparision operator that compare two
operand and return a Boolean value true or false.

Some comparision operators are:-

1. ==
2. ===
3. !=
4. >
5. <
6. >=
7. <=
Logical operator
In JavaScript, the logical operators are used to combine two or
more conditions.

Some logical operators are:-

1. &&
2. !
3. ||
String operator
The “+” operator performs concatenation operation when one
of the operands is of string type.

Examples:-

Let a= 5 , b= “hello”;
a+b; //return “5hello”
Bitwise operator
Bitwise operators treat its operands as a set of 32-bit binary
digits (zeros and ones) and perform actions. However, the
result is shown as a decimal value

Some bitwise operators are:-


1. & : Bitwise AND
2. | : Bitwise OR
3. ^ : Bitwise XOR
4. ~ : Bitwise NOT
5. << : Left Shift
6. >> : Right Shift
THANK
YOU

You might also like