Challenge Bring Your JavaScript Slot Machine To Life - ashish9342/FreeCodeCamp GitHub Wiki
Let's use the jQuery selector $(".slot")
to select all of the slots.
Once they are all selected, we can use bracket notation to access each individual slot:
$($(".slot")[0]).html(slotOne);
$($(".slot")[1]).html(slotTwo);
$($(".slot")[2]).html(slotThree);