(Edited) Ex: The setInterval feature works with: a=0;setInterval(function(){a++,b=1},33) or a=0;setInterval(e=>{a++,b=1},33); but not with: a=0;setInterval("a++",33); or with the very strange but still valid a=0;setInterval`a++${33}b=1`; Thanks!