It is my Computer Notes.
Using Guide : object-key or object-key-key
e.g. Step 1 Blog Search : [mysql-run] and then Step 2 ctrl+F [mysql-run]
{bookMark me : Ctrl+D}
2013年10月23日 星期三
javascript-padl
function padl(n, width, z) {
// e.g. var mm = d.getMonth();mm=padl(mm,2,'0');
z = z || '0';
n = n + '';
return n.length >= width ? n : new Array(width - n.length + 1).join(z) + n;
}
沒有留言:
張貼留言