Schedular and Its Types
Schedular and Its Types
Operators
NAME:-PRIYA KUMARI
BATCH:-BCA(PPU)-B1
ID:-9844
ROLL:-B-18
GIVEN BY:-RAM LAKHAN SIR
JAVASCRIPT OPERATOR
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
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.
1. ==
2. ===
3. !=
4. >
5. <
6. >=
7. <=
Logical operator
In JavaScript, the logical operators are used to combine two or
more conditions.
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