Styling with JS and via loop (toggle)

PHOTO EMBED

Sat May 07 2022 15:19:52 GMT+0000 (Coordinated Universal Time)

Saved by @Luduwanda #javascriptreact

//To convert each background given to a second value

const newBackgrounds = document.querySelectorAll('li');
for(let li of newBackgrounds){
    li.classList.toggle('highlight');
} 
content_copyCOPY