I am trying to create a timer and increase it's value every ms.
My code currently looks like this, and isn't working (obviously) as it is concatenating the string. Is there any relatively straight forward way to implement this?
var num = '00:00:00';
setInterval(function(){
num += '00:00:01'
}, 1);