Skip to content

Instantly share code, notes, and snippets.

@toshinoritakata
Last active January 14, 2020 07:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save toshinoritakata/4249744 to your computer and use it in GitHub Desktop.
Save toshinoritakata/4249744 to your computer and use it in GitHub Desktop.
3桁でゼロパディング
function padding3(num) {
var res;
if (eval(num) < 999) {
res = ("00"+num).slice(-3);
} else {
res = ""+num; //文字列に変換
}
return res;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment