N-й корень числа const nthRoot = (x, n) => Math.pow(x, 1 / n);JavaScriptCopy nthRoot(32, 5); // 2JavaScriptCopy Числа JavaScript