← Back to Question List
JavaScript Quiz #18
Counting Passing Scores
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];