Skip to content

ceilDiv

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

Perform ceiling-divison of two numbers.

Similar: floorDiv, ceilDiv, roundDiv.


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

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


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

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

xmath.ceilDiv(-15, 4);
// → -3


References

Clone this wiki locally