DEV Community

Discussion on: Let's Count Some Sheep!

Collapse
 
abrjagad profile image
Abraham Jagadeesh
function getTotalTrueValues(array) {
   return array.filter(Boolean).length;
}

You may use Boolean too