CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
JavaScript Quiz #18

Counting Passing Scores

easyLoops

Using the array const scores = [55, 78, 90, 62, 48];, a passing score is >= 60. After running a forEach loop that increments a counter when a score is passing, what value should be logged?

📄 Code

1const scores = [55, 78, 90, 62, 48];