scrimba
Note at 1:29
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 1:29
AboutCommentsNotes
Note at 1:29
Expand for more info
index.js
run
preview
console
const redLights = document.querySelectorAll('.lights.red');
const blueLights = document.querySelectorAll('.lights.blue');

function toggleRedLights() {
redLights.forEach(light => light.classList.toggle('lights-on'));
}

function toggleBlueLights() {
blueLights.forEach(light => light.classList.toggle('lights-on'));
}

setInterval(toggleRedLights, 800);
setTimeout(() => setInterval(toggleBlueLights, 800), 400);
Console
/index.html
LIVE