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

About this user

Steve Yen trimpath.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

leftZeroPad

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"
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS