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

   1  
   2  var MANY_ZEROS = "000000000000000000";
   3  
   4  function leftZeroPad(val, minLength) {
   5      if (typeof(val) != "string")
   6          val = String(val);
   7      return (MANY_ZEROS.substring(0, minLength - val.length)) + val;
   8  }


leftZeroPad(3, 2) ==> "03"
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS