Comment obtenir le reste en dactylographie

var y = 11;
var x = 4;
var remainder = (y % x);
console.log(remainder);
Real Rattlesnake