我需要得到一个数字的双平方根,但我的代码不起作用:
function doubleSquareRootOf(num) {
return num * num * num;
}
var output = doubleSquareRootOf(121);
console.log(output); // --> it must return 22 but its displaying 1771561
有什么想法吗?
答案 0 :(得分:7)
尝试使用sqrt * 2而不是使数字为
return Math.sqrt(num)*2;
答案 1 :(得分:0)
math.sqrt(math.sqrt(number))->这是数字的双平方根