Obtener el Qoutient de un número en JavaScript

var div = Math.trunc(y/x);
var rem = y % x;
Spotless Stork