function handleClickFor(index, text) {
a[index].addEventListener('click', function() {
dec2(text, text);
summCounter1();
callsPerDay();
callsOverall();
});
}
Array(3).fill().forEach(function(_, i) {
handleClickFor(i, 'count' + (i + 1) )
})