Divisi JavaScript mendapatkan sisa

var y=11;
var x=4;
var quotient = Math.floor(y/x); //2
var remainder = y % x; //3
Grepper