Newer
Older
2022-komatsuY / redyellow.js
@Komatsu Yu Komatsu Yu on 1 Jul 2022 283 bytes Update redyellow.js
function check() {
  document.getElementById("box").style.backgroundColor = "white";
  document.getElementById("box").style.color = "black";
}


function red() {
  document.getElementById("box").style.backgroundColor = "red"; 
  document.getElementById("box").style.color = "red";
}