Skip to content

Instantly share code, notes, and snippets.

View jotadepaula's full-sized avatar

Jhoterdan de Paula jotadepaula

  • Belo Horizonte, MG Brazil
  • 12:27 (UTC -03:00)
View GitHub Profile
@jotadepaula
jotadepaula / color.js
Created February 29, 2024 17:58
test -color
(function changeBackgroundToBlack() {
const allElements = document.getElementsByTagName("*");
for(let i=0; i< allElements.length; i++) {
allElements[i].style.backgroundColor = "black";
}
})();