document.getElementById('addButton0').onclick = function(){
if (this.className == 'button') {
this.className = 'blueColor';
let num = 1;
}
else {
this.className = 'button';
let num = 0;
}
document.body.onclick = function() {
num = +!num;
}
}