padStart:在字符串的开头进行字符补全padEnd:在字符串的结尾进行字符补全
str.padStart(targetLength [, padString])
targetLength :目标字符串长度
padString: 用来补全长度的字符串
随机生成一个六位数,不足六位时用1补齐
const code = Math.floor(Math.random() * 1000000).toString().padStart(6, "1");
console.log(code)
原文地址:https://www.cnblogs.com/youngMe/p/11022620.html
时间: 2024-10-02 21:46:41