PHP
·
发表于 5年以前
·
阅读量:8292
function countOccurrences(arr, value) {
return arr.reduce((a, v) => (v === value ? a + 1 : a + 0), 0);
}