--- title: Add Axes to a Visualization --- ## Add Axes to a Visualization ### Hint 1 Set the y-axis variable using `const yAxis = d3.axisLeft(yScale);`. ### Hint 2 Append the y-axis using `svg.append()`. ### Spoiler Alert | Solution Ahead ### Solution To solve the challenge, use: ```html ```