公司某业务需要六位短信验证码
const getVerCode = () => {
let verCode = Math.floor((Math.random()*1000000)+1);
if (verCode < 100000) {
return getVerCode();
}
return verCode;
}
生成的随机数并不是固定六位,若不是六位,则递归执行。
本人不保证此代码是最佳写法(但是能用,手动滑稽)
公司某业务需要六位短信验证码
const getVerCode = () => {
let verCode = Math.floor((Math.random()*1000000)+1);
if (verCode < 100000) {
return getVerCode();
}
return verCode;
}
生成的随机数并不是固定六位,若不是六位,则递归执行。
本人不保证此代码是最佳写法(但是能用,手动滑稽)
本文标题:Node.js生成六位随机数
本文链接:https://www.haomeiwen.com/subject/nokznctx.html
网友评论