-
Notifications
You must be signed in to change notification settings - Fork 0
floorDiv
Subhajit Sahu edited this page Aug 8, 2022
·
1 revision
Perform floor-divison of two numbers.
function floorDiv(x, y)
// x: divisor
// y: dividend
const xmath = require('extra-math');
xmath.floorDiv(15, 4);
// → 3
xmath.floorDiv(2, 2);
// → 1
xmath.floorDiv(-15, 4);
// → -4