List of utility methods to do String Padding Left
String.prototype.leftPad = function (l, c) { return new Array(l - this.length + 1).join(c || ' ') + this;