find nth root javascript code example
Example 1: root of any number javascript
let n = 64;
let root = 6;
Math.pow(n, 1/root);
//output 2;
Example 2: javascript nth root
var root = 3;
var number = 27;
var answer = Math.pow(number, 1 / root); // 3