javascript division The answer to the division question should not be the same every time. code example
Example: javascript division get remainder
var y=11;
var x=4;
var quotient = Math.floor(y/x); //2
var remainder = y % x; //3
var y=11;
var x=4;
var quotient = Math.floor(y/x); //2
var remainder = y % x; //3