Building the count app with JavaScript, but before that, I will highlight the steps we will be taking.
write our html code
write our css for styl...
For further actions, you may consider blocking this person and/or reporting abuse
Great tutorial. Good for practice.
Can you please help me with the meaning of
0${time}
and the whole line as well.
return time < 10? `0${time}` : time;
Means adding zero (0) to the time if is less than 10, when counting down.
We use return ternary to check the time and add 0 to it, if the count down is less than 10 or return the normal format time, when counting down.
Thank you
I hope this helps
thanks a ton :)
And please keep stuff like this coming.
Projects like these are fun and helpful for beginners and others to keep in touch with the language.
Cheers ๐ฅ
Sure I will.
Thank you
Awesome to see that you are progressing man. Looking forward to some more great content!
Thanks, sure I will
Cool tutorial.
What about clearInterval?
Note that setInterval of 1000ms will actually not trigger the callback exactly every 1000ms. More info here: m.youtube.com/watch?v=MCi6AZMkxcU
Thanks so much
EZ
Noted, I will in the next one
So many people do not realise this. Maybe the Write a new post page should have some sort of instructions or some markdown snippets. Or even better a way to automatically add those tags.
Sure. I think so