30秒学会 JavaScript 片段 · 2023年10月15日

30秒学会 JavaScript 片段 – Nth root of number

Calculates the nth root of a given number.

  • Use Math.pow() to calculate x to the power of 1 / n which is equal to the nth root of x.

代码实现

const nthRoot = (x, n) => Math.pow(x, 1 / n);

nthRoot(32, 5); // 2

翻译自:https://www.30secondsofcode.org/js/s/nth-number-root