How to perform an integer division, and separately get the remainder, in JavaScript?

For some number y and some divisor x compute the quotient (quotient) and remainder (remainder) as:

var quotient = Math.floor(y/x);
var remainder = y % x;

Leave a Comment