We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Gives length of hypotenuse. 🏃 📼 📦 🌔 📒
bigint.hypot(...xs); // xs: lengths of perpendicular sides
const bigint = require('extra-bigint'); bigint.hypot(3n, 4n); // 5n bigint.hypot(2n, 3n, 6n); // 7n bigint.hypot(); // 0n