JSFiddle - React, Tailwind, and code Playground
JavaScript
function padSix(x)
{
if (x <= 999999)
{
x = ("00000"+ x).slice(-6);
}
return x;
}
alert(padSix(5));
function padSix(x)
{
if (x <= 999999)
{
x = ("00000"+ x).slice(-6);
}
return x;
}
alert(padSix(5));