374 B
374 B
title, tags, expertise, firstSeen, lastUpdated
| title | tags | expertise | firstSeen | lastUpdated |
|---|---|---|---|---|
| Nth root of number | 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