How Much is True? || JavaScript
Create a function which returns the number of?true?values there are in an array.
Examples
countTrue([true, false, false, true, false]) ? 2
countTrue([false, false, false, false]) ? 0
countTrue([]) ? 0
Notes
First solution:
Second solution :
function countTrue(arr){
var count = 0;
for(var i = 0; i < arr.length; i++){
if(arr[i] === true){
count++;
}
}
return count;
}