Javascript Melakukan Divisi Integer

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