Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

leftZeroPad (See related posts)

var MANY_ZEROS = "000000000000000000";

function leftZeroPad(val, minLength) {
    if (typeof(val) != "string")
        val = String(val);
    return (MANY_ZEROS.substring(0, minLength - val.length)) + val;
}


leftZeroPad(3, 2) ==> "03"

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts