how to make object change color multiple times with click javascript html code example
Example: how to change test colo on js button
var about;
function init() {
about = document.getElementById("about").innerHTML;
about.style.color = 'blue';
}