You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it would be much clearer what is going on if instead of:
// The new year is here! Count towards something else.
// Notice the *1000 at the end - time must be in milliseconds
ts = (new Date()).getTime() + 10*24*60*60*1000;
the example read:
// Countdown towards 10 days from now
// Notice the *1000 at the end - time must be in milliseconds
daysFromNow = 10;
daysToMilliseconds = 24*60*60*1000;
ts = (new Date()).getTime() + daysFromNow * conversionToMilliseconds;
or similar.
The text was updated successfully, but these errors were encountered:
I think it would be much clearer what is going on if instead of:
the example read:
or similar.
The text was updated successfully, but these errors were encountered: