美文网首页
JS 随机生成字母数字组合(包含大写字母)

JS 随机生成字母数字组合(包含大写字母)

作者: wlianfu | 来源:发表于2019-06-18 13:58 被阅读0次

JS 随机生成字母数字组合(包含大写字母)

function randomString(len, charSet) {
  charSet = charSet || 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
  let randomString = '';
  for (let i = 0; i < len; i++) {
    let randomPoz = Math.floor(Math.random() * charSet.length);
    randomString += charSet.substring(randomPoz,randomPoz+1);
  }
  return randomString;
}

相关文章

网友评论

      本文标题:JS 随机生成字母数字组合(包含大写字母)

      本文链接:https://www.haomeiwen.com/subject/dlkfqctx.html