350 B
350 B
title, tags, firstSeen, lastUpdated
| title | tags | firstSeen | lastUpdated |
|---|---|---|---|
| nthRoot | math,beginner | 2021-01-06T22:47:48+02:00 | 2021-01-06T22:47:48+02:00 |
Calculates the nth root of a given number.
- Use
Math.pow()to calculatexto the power of1/nwhich is equal to the nth root ofx.
const nthRoot = (x, n) => Math.pow(x, 1 / n);
nthRoot(32, 5); // 2