Skip to content

Challenge Bring your JavaScript Slot Machine to Life

SaintPeter edited this page · 1 revision
Clone this wiki locally

Bring your JavaScript Slot Machine to Life

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);
Something went wrong with that request. Please try again.