I want that in my watch always appear in two digits. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I want that in my watch always appear in two digits.

I want in my JavaScript watch digits always appear in two digits even 1-9 appear as 01-09 but problems in my code that I didn't detect yet. Anyone help me to solve my problem. https://code.sololearn.com/WR2WN90W67S8/?ref=app

12th Jun 2018, 11:38 AM
Satish Kumar Sharma
Satish Kumar Sharma - avatar
1 Answer
+ 3
Well you may need to avoid hard-coding the rules at line 46 to 49 and what you need is padding. 😉 For example, var answer = 42; alert( answer .toString() .padStart(3, '0') ); // display as 042 You may learn more info @ https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart
12th Jun 2018, 11:54 AM
Zephyr Koo
Zephyr Koo - avatar