Section 1

Preview this deck

&&

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (27)

Section 1

(27 cards)

&&

Front

The AND logical operator

Back

*

Front

Multiplication arithmetic operator

Back

%

Front

Modulus arithmetic operator (division remainder)

Back

++

Front

Increment arithmetic operator

Back

/=

Front

Shortcut assignment operator for x=x/y operation

Back

==

Front

Is equal to (comparison operator)

Back

-=

Front

Shortcut assignment operator for x=x-y operation

Back

||

Front

The OR logical operator

Back

<=

Front

Is less than or equal to (comparison operator)

Back

Logic Operator

Front

Operator used to determine the logic between variables or values

Back

%=

Front

Shortcut assignment operator for x=x%y operation

Back

!=

Front

Is not equal to (comparison operator)

Back

!

Front

The NOT logical operator

Back

=

Front

Equals assignment operator (x=y assigns y to x)

Back

>=

Front

Is greater than or equal to (comparison operator)

Back

*=

Front

Shortcut assignment operator for x=x*y operation

Back

/

Front

Division arithmetic operator

Back

>

Front

Is greater than (comparison operator)

Back

+

Front

Addition arithmetic operator (can be used for numbers and strings) [operator]

Back

Assignment Operator

Front

Operator used to assign values to JavaScript variables

Back

-

Front

Subtraction arithmetic operator

Back

Comparison Operator

Front

Operator used in logical statements to determine equality or difference (the comparison operator returns true or false)

Back

--

Front

Decrement arithmetic operator

Back

===

Front

Is exactly equal to (value and type comparison operator - think about the difference between a number and a string)

Back

Arithmetic Operator

Front

Operator used to perform arithmetic between variables and/or values

Back

+=

Front

shortcut assignment operator for x=x+y operation

Back

<

Front

Is less than (comparison operator)

Back