Count the Balls

Step 2: Create a div to represent a ball. Do this using JavaScript so that you can later use a loop to create hundreds of divs. Add the following to create a div using Javascript:
let ball = document.createElement(`div`)
Last step Next step