Рассчитайте остальную часть деления в TypeScript

var quotient = Math.floor(y/x);
var remainder = y % x;
Prickly Penguin