!) Write the JavaScript code that gets the square root of the number code example
Example: root of any number javascript
let n = 64;
let root = 6;
Math.pow(n, 1/root);
// output 2;
let n = 64;
let root = 6;
Math.pow(n, 1/root);
// output 2;