Skip to content

roundDiv

Subhajit Sahu edited this page Aug 8, 2022 · 1 revision

Perform rounded-divison of two numbers.

Similar: floorDiv, ceilDiv, roundDiv.


function roundDiv(x, y)
// x: divisor
// y: dividend

const xmath = require('extra-math');


xmath.roundDiv(15, 4);
// → 4

xmath.roundDiv(2, 2);
// → 1

xmath.roundDiv(-15, 4);
// → -4


References

Clone this wiki locally