gpt4 book ai didi

javascript - 使用javascript从数组中过滤掉数字索引

转载 作者:行者123 更新时间:2023-12-02 16:59:39 25 4
gpt4 key购买 nike

这是我编写的用于从数组中过滤掉数值的代码,但它返回完整的数组。我无法找出我的代码中的问题。请帮助我,我被困住了......

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>html demo</title>
</head>
<body>
<script>
arr = ["apple", 5, "Mango", 6];
function filterNumeric(arrayName){
var i = 0;
var numericArray=[];
for (i; i <arrayName.length;i++){
if (typeof(arrayName[i] === 'number')) {
numericArray+=arrayName[i];
}
}
return numericArray;
}

var filter = filterNumeric(arr);
alert(filter);
</script>

</body>
</html>

最佳答案

typeof 检查中的拼写错误:

if (typeof(arrayName[i]) === 'number') {
// ^^^ close the parentheses here
// ^^^ not there

关于javascript - 使用javascript从数组中过滤掉数字索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25864991/

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