Game Lab Documentation

Subtract operator

Category:Math

All programming languages support the basic arithmetic operations of addition, subtraction, multiplication and division of numbers.

Examples

Example: Typical Usage

Subtract two numbers.

console.log(3-5);
var x=3;
var y=5;
console.log(x-y);

Syntax

value1 - value2

Parameters

NameTypeRequired?Description
value1any

The operands can be a number, or a variable containing a number, or the number returned by a function, or the numeric result of the evaluation of an expression.

value2any

Same as value1 but serves as the amount to subtract from the first value.

Returns

The difference of two numbers.

Tips

  • Operator precedence is the same as standard arithmetic - Expressions within a parentheses have the highest precedence, then multiplcation and division, then addition and subtraction.

Found a bug in the documentation? Let us know at support@code.org.