Jak uzyskać resztę w maszynopisie

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