reading-notes

My reading notes


Project maintained by brandomoki Hosted on GitHub Pages — Theme by mattgraham

Programming with Java Script

Control Flow

JS Functions

JavaScript Operators

Operator Description

+ Addition

- Subtraction

* Multiplication

** Exponentiation (ES2016)

/ Division

% Modulus (Division Remainder)

++ Increment

-- Decrement

JavaScript Assignment Operators

Operator, Example, Same As =,x = y, x = y

+=, x += y, x = x + y

-=, x -= y, x = x - y

*=, x *= y, x = x * y

/=, x /= y, x = x / y

%=, x %= y, x = x % y

**=, x **= y, x = x ** y