Hi,

> for (i = 8; i > timeString.length; --i)

Would probably be better as:

var timeLength = timeString.length;
for (i = 8; i>timeLength; i--)

(As the condition is rarely encountered it's not a big deal)

Thanks,
Justin

Reply via email to