//let value;
function Initial() {
window.value = 100500;
return window.value;
}
function Preview() {
let button1 = document.createElement('button');
button1.innerHTML = 'Value';
button1.onclick = function() {
alert(window.value);
}
document.documentElement.append(button1);
}
function Increment() {
let button2 = document.createElement('button');
button2.innerHTML = '+1';
button2.onclick = function() {
window.value++;
alert(window.value);
}
document.documentElement.append(button2);
return window.value;
}
Initial();
Increment();
Preview();