gpt4 book ai didi

javascript - 函数和 if else 语句不起作用

转载 作者:行者123 更新时间:2023-12-05 01:20:22 25 4
gpt4 key购买 nike

我只是在学习如何编码,我现在正在使用 CodeWars 练习基础知识。由于 CodeWars 允许您查看解决方案,因此我查看了一些指导,这很有帮助。我使用这个网站作为指导,但无法弄清楚为什么我的功能不起作用。它是用 javascript 编写的。它只输出 []。这是问题、代码和输出(按以下顺序):

问题

Write a method, that will get an integer array as parameter and will process every number from this array. Return a new array with processing every number of the input-array like this: If the number has an integer square root, take this, otherwise square the number. [4,3,9,7,2,1] -> [2,9,3,49,4,1]

代码

function squareOrSquareRoot(array) {

var newValues = []; // new array for new values

for (i = 0; i < array.length; i++){ // for loop to look through the values

var initial = array[i]; // extracting one value from the array to evaluate
var sqrt = Math.sqrt(initial); // finding the square root of initial
if (Number.isInteger(sqrt) == 'true'){ // determining if sqrt is an integer
// and if so .....
newValues.push[sqrt];
} // .... adding sqrt to the newValues array
else if (Number.isInteger(sqrt) == 'false') { // determining if sqrt is not
// an integer
newValues.push[initial*initial]; // then multiplying initial by itself
//and adding to newValues
}
}
return newArray; // returning newValues onto the screen
}

输出

Expected: '[2, 9, 3, 49, 4, 1]', instead got: '[]'

Expected: '[10, 10201, 25, 25, 1, 1]', instead got: '[]'

Expected: '[1, 4, 9, 2, 25, 36]', instead got: '[]'

最佳答案

您的条件有缺陷。改变

Number.isInteger(sqrt) == 'true'

Number.isInteger(sqrt) == true

Number.isInteger 返回 bool 值而不是字符串。另外第二个 else if 是多余的,如果 isInteger 返回 false 则只执行 else 部分而不是再次检查。最后,您需要返回 newValues 而不是 newArray。希望对您有所帮助。

关于javascript - 函数和 if else 语句不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45265047/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com