Last active
July 26, 2023 09:39
-
-
Save zlrlo/a2b1b24102126310b997d81823dece0a to your computer and use it in GitHub Desktop.
[JS] 문자열의 시작을 다른 문자열로 채우기
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const hour = '21'; | |
| const min = '53'; | |
| const sec = '5'; | |
| const time = `${hour}:${min}:${sec.padStart(2, '0')}` | |
| console.log(time); // 21:53:05 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment