Pure counterexample
function countInArray(array, item) {
var count = 0;
.filter(function (value) {
arrayif (value.valueOf() === item.valueOf()) {
++
count
};
})return count;
}
function countInArray(array, item) {
var count = 0;
.filter(function (value) {
arrayif (value.valueOf() === item.valueOf()) {
++
count
};
})return count;
}