If you run this javascript code below,
var i = 20220215155;
function increment(){
i++;
document.getElementById('period').innerHTML += i + "<br />" + "<hr />" ;
}
setInterval('increment()', 32100);
you will see that after every 30 seconds, the numbers (20220215155) gets incremented and each increment is printed on a new line. E.g;
**20220215156
20220215157
20220215158
20220215159
20220215160**
But I want each print to sort this way after each incrementation;
**20220215160
20220215159
20220215158
20220215157
20220215156**
Whereby if 20220215156 is on the first line, after 30 seconds, 20220215157 should be on the first line and the previous numbers goes to the second line automatically and after the next 30 seconds, 20220215158 appears in the first line and so on. I just hope anyone understands.
Please I need help doing that.
let info = document.getElementById('info');
let num = 20220215155;
setInterval(() => {
let newElement = document.createElement('p');
newElement.innerHTML = `${++num}<hr>`;
info.insertBefore(newElement, info.childNodes[0]); //Adding newElement at the beginning of the parent
}, 1000);
<html>
<body>
<div id="info">
</div>
</body>
</html>