Всем привет. Есть вот такая функция
on.onclick = function myFun() {
setTimeout(function two() {
var elem, curValue, bg, newValue, newButton;
elem = document.getElementById('test');
curValue = elem.innerHTML;
if (curValue === "Зима") {
newValue = "Весна";
bg = "url('http://oboi.kards.qip.ru/images/wallpaper/72/fb/195442_1680_1050.jpg')";
} else if (curValue === "Весна") {
newValue = "Лето";
bg = "url('https://tv5.zp.ua/wp-content/uploads/2017/11/23519149_1495912677111681_7838443815156855107_n-1.jpg')";
} else if (curValue === "Лето") {
newValue = "Осень";
bg = "url('http://www.fresher.ru/mary/10-2016/osen-luchshie-fotografii-so-vsego-mira/20.jpg')";
} else {
newValue = "Зима"
bg = "url('http://www.bestwall.com.ua/data/media/14/zima_bwua_13.11.2011_113__1920x1200.jpg')";
}
elem.innerHTML = newValue;
document.body.style.backgroundImage = bg;
newButton = document.createElement('button')
container[0].appendChild(newButton);
newButton.innerHTML = " изменил погоду" + " " + 1 + " " + "раз";
newButton.setAttribute("type", "button");
}, 500);
}
Там где
newButton.innerHTML = " изменил погоду" + " " + 1 + " " + "раз";
вместо 1 мне нужен счетчик выполнения этой самой функции. т.е выводить на страничку что то типа count++ . Не могу понять, как сделать внутри функции