js 的补零操作 2019-12-24 本文已影响0人 sorry510 function PrefixZero(num, n) { return (Array(n).join(0) + num).slice(-n) }