function fix(num, length) { return (‘‘ + num).length < length ? ((new Array(length + 1)).join(‘0‘) + num).slice(-length) : ‘‘ + num;}
fix(1234, 8);// "00001234"fix(1234, 2);// "1234"
js 设置固定位数。时间月日小时分钟秒
原文:https://www.cnblogs.com/wx18638101223/p/15169619.html