javascript division get remainder
var y=11;
var x=4;
var quotient = Math.floor(y/x); //2
var remainder = y % x; //3
javascript division get remainder
var y=11;
var x=4;
var quotient = Math.floor(y/x); //2
var remainder = y % x; //3
javascript remainder function
12 % 5 // 2
mod remainder js
function mod(n, a, b) {
n = n | 0;
a = a | 0;
b = b | 0;
let rem;
if (a < 0 || b < 0) {
const places = (b - a);
rem = (n - a) % (places + 1);
rem = rem < 0 ? (rem + (places + 1)) : rem === 0 ? 0 : rem;
return rem - (places - b);
}
if (n === b) return n;
if (n === b + 1) return a;
if (n === a - 1) return b;
rem = n % (b || 1);
rem = rem < a ? (rem + b) : rem === 0 ? 0 : rem;
return rem;
}
mod(1, 1, 5); // 1
mod(0, 1, 5); // 5
mod(0, -1, 5); // 0
mod(-2, -1, 5); // 5
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us