We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Gives cube root of value. 🏃 📼 📦 🌔 📒
bigint.cbrt(x); // x: a bigint
const bigint = require('extra-bigint'); bigint.cbrt(8n); // 2n bigint.cbrt(7n); // 1n bigint.cbrt(-27n); // -3n