Skip to content

Instantly share code, notes, and snippets.

@omega-takai
Created April 28, 2020 02:37
Show Gist options
  • Select an option

  • Save omega-takai/342c6457e30e9c93df8ec1f0a127be2c to your computer and use it in GitHub Desktop.

Select an option

Save omega-takai/342c6457e30e9c93df8ec1f0a127be2c to your computer and use it in GitHub Desktop.
const zeroPadding = (num, length = 2) => {
const stringNumber = ('0000' + num).slice(-length)
return stringNumber
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment