DOCTYPE html> JS: Math - The manual.

JavaScript 101 /math

Arithmetic operators

The most commonly used arithmetic operators are +, -, * and /. Can you name other ones as well?

Calculating with variables

Connecting data

The + operator doubles as a way to connect data to eachother.

Math functions

We won't be using these for a little while but do know that there are several useful math functions. Functions are types of code that do things. Here are the most common ones that will be useful in the future:

Conclusion/recap

Next: JS Basics - loops