Вернуть остаток из двух чисел JavaScript

function remainder(x, y) {
	return x % y;
}
Richard Lenane