Cómo obtener el resto en TypeScript

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