gpt4 book ai didi

Javascript/jQuery : remove all non-numeric values from array

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:33:46 28 4
gpt4 key购买 nike

对于数组:["5","something","","83","text",""]

如何从数组中删除所有非数字和空值?期望的输出:["5","83"]

最佳答案

使用array.filter()和一个回调函数 checks if a value is numeric :

var arr2 = arr.filter(function(el) {
return el.length && el==+el;
// more comprehensive: return !isNaN(parseFloat(el)) && isFinite(el);
});

array.filter has a polyfill适用于 IE8 等较旧的浏览器。

关于Javascript/jQuery : remove all non-numeric values from array,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24022682/

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