Operators Flashcards
assignment operator
(=) assigns a value to a variable Ex: Assignment var x = 10;
addition operator
(+) adds numbers Ex: Adding var x = 5; var y = 2; var z = x + y;
multiplication operator
(*) multiplies numbers Ex: Multiplying var x = 5; var y = 2; var z = x * y;
+
Addition
-
Subtraction
*
Multiplication
/
Division
%
Modulus
++
Increment
–
Decrement
=
Ex: x = y
Same As:
x = y
+=
EX: x += y
Same As:
x = x + y
-=
Ex: x -= y
Same As:
x = x - y
*=
Ex: x *= y
Same As:
x = x * y
/=
Ex: x /= y
Same As:
x = x / y
%=
Ex: x %= y
Same As:
x = x % y
addition assignment operator
(+=) adds a value to a variable
what can the + be used for?
also be used to add (concatenate) strings Example txt1 = "John"; txt2 = "Doe"; txt3 = txt1 + " " + txt2;
+= assignment operator
also be used to add (concatenate) strings
When used on strings the + operator is called ?
concatenation operator
Can you add strings and numbers together?
Yes, Adding two numbers, will return the sum, but adding a number and a string will return a string
Example
x = 5 + 5;
y = “5” + 5;
z = “Hello” + 5;
What happen when you add a number and a string?
the result will be a string
==
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
?
ternary operator
&&
logical and
||
logical or
!
logical not
typeof
Returns the type of a variable
instanceof
Returns true if an object is an instance of an object type
&
AND
|
OR
~
NOT
XOR
<
Zero fill left shift
> >
Signed right shift
> > >
Zero fill right shift
Bitwise Operators
work on 32 bits numbers
Any numeric operand in the operation is converted into a 32 bit number
what is the assignment sign?
=
= is what
The assignment to a var
What is the equality or equal to sign?
==
== is what?
equality or equal to commend.
=== is what?
strict equality or equal to commend.
What operators should be used when you are checking for equality within JS?
===
if ( a == b)
equal to
if ( a != b)
not equal to
if ( a === b)
strict equality
if ( a !== b)
not equal to
if ( a > b)
greater than
if ( a < b)
less than
if ( a >= b)
greater than or equal to
if ( a <= b)
less than or equal to
&&
and
||
or