JavaScript » Arithmetic » %

This is the modulus operator which returns the integer remainder of dividing the preceding operand by the one following it.

Examples

Code:
x = 9 % 7;
Explanation:

This example assigns the value 2 to the variable 'x'.