not
!
or
||
and
&&
how do you create a combination of booleans?
() for example
true && (true || false)
will derive true
equal to
===
not equal to
!==
addition
+
subtraction
-
multiplication
*
division
/
exponent
**
modulo
%
plus equals
\+= example: x += y x = x + y incrementing x by y
minus equals
-=
times equals
*=
divide equals
/=
absolute value
Math.abs( )
round up
Math.ceil( )
round down
Math.floor( )
parsing an integer
parseInt( )
parsing a float
parseFloat( )
generate a number between 0 and 1
Math.random( )
greater than
>
greater than or equal to
> =