let toggle = false;

var body = document.body; const chk = document.querySelector('.check');

chk.addEventListener("click", () => { if(!toggle){ toggle = true; body.classList.add("darkMode");

}else{ toggle = false; body.classList.remove("darkMode"); }

});

Governance

Governance to foster the technology adoption

Governance to foster the technology adoption Governance is the ability of an organization to control and regulate its own functioning.…

3 years ago