Skip to content

Instantly share code, notes, and snippets.

@zlrlo
Last active July 26, 2023 09:39
Show Gist options
  • Select an option

  • Save zlrlo/a2b1b24102126310b997d81823dece0a to your computer and use it in GitHub Desktop.

Select an option

Save zlrlo/a2b1b24102126310b997d81823dece0a to your computer and use it in GitHub Desktop.
[JS] 문자열의 시작을 다른 문자열로 채우기
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