questionaries

 $0.getattribute() not working

$0.value not working


var i = 5;

var timer = setInterval(function() {

  //console.log(--i);

  document.getElementById('b').innerHTML=i;

i-=1;

  if (i === -1) clearInterval(timer);

  

},1000);

Comments

Popular posts from this blog

interview questions js[ Anurag Singh ProCodrr]

reactnative_creation