We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Find the cube root of a bigint.
Similar: sqrt, cbrt, root.
function cbrt(x) // x: a bigint
const xbigint = require('extra-bigint'); xbigint.cbrt(27n); // → 3n xbigint.cbrt(99n); // → 4n