素胚勾勒不出你
2023-06-09 10:46:53
我有一個像下面這樣的數(shù)組const userArray = ['school', 'science', '', '', null, 'bachelors', 'final', undefined, null]正如您所注意到的,我有 2 個空字符串,2 個 null 和 1 個未定義。所以總數(shù)是5。我怎樣才能每次循環(huán)并仍然獲得數(shù)組中空字符串、null 和 undefined 的總數(shù)。
2 回答

慕姐8265434
TA貢獻(xiàn)1813條經(jīng)驗 獲得超2個贊
您可以使用數(shù)組過濾器。
const userArray = [
"school",
"science",
"",
"",
null,
"bachelors",
"final",
undefined,
null,
];
let ret = userArray.filter((x) => !x).length;
console.log(ret);

慕容森
TA貢獻(xiàn)1853條經(jīng)驗 獲得超18個贊
您可以使用 Array.prototype.filter() 方法從數(shù)組中刪除非虛假值并計算過濾后數(shù)組的長度,如下所示:
const userArray = ["school", "science", "", "", null, "bachelors", "final", undefined, null];
const filteredArray = userArray.filter(value => !value);
console.log(filteredArray.length);
添加回答
舉報
0/150
提交
取消