Your Turn: Quiz Score Analyzer (from S19)
Create score-analyzer.html. Hard-code: const scores = [88, 72, 95, 63, 81, 56, 90]
Part 1 - Loop through the array to calculate and display:
- Total number of scores, average (use
toFixed(1)), highest and lowest
- Number of passing scores (>= 60)
Part 2 - Build on Part 1:
- Display each score as a horizontal bar (
<div> with width = score%) with its letter grade
- Color-code: green for A/B, orange for C/D, red for F