We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Numbers Review

Remember, in JavaScript all numbers are just "number" types. There is no distinction between "Float" types and "Integer" types.

Addition

2 + 1;
// 3

Subtraction

2 - 1;
// 1

Multiplication

2 * 2;
// 4

Division

3 / 2;
// 1.5 (still just a "number")