Modulo operator

Category:Math

Returns the remainder of a division problem.

Examples

// MOD returns the remainder of a division problem
var x=10;
var y=3;
console.log(x%y);

Parameters

NameTypeRequired?Description
x Number The dividend of the division, the number being divided.
y Number The divisor of the division, the number x is being divided by.

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