Skip to content

Instantly share code, notes, and snippets.

@virtualhobbit
Created May 19, 2020 11:51
Show Gist options
  • Save virtualhobbit/41154c1930951b187690c061e6878277 to your computer and use it in GitHub Desktop.
Save virtualhobbit/41154c1930951b187690c061e6878277 to your computer and use it in GitHub Desktop.
var inc = "1";
var newNum = parseInt(inNum, 10) + parseInt(inc, 10);
if ((newNum.toString()).length < 2){
newNum = "0" + newNum;
}
return newNum;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment