function main() {
  var abc = document.getElementById('space');
  abc.style.left += 10 + 'px';
  main2();
}
function main2() {
  setInterval(main(), 1000);
}
according to this code value position of space must change in 1 second. but it is not working position is changing only once
 
    