美文网首页
随机字符串函数

随机字符串函数

作者: 冬至_5b58 | 来源:发表于2019-08-25 11:32 被阅读0次
    const chars = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'];
    
    const random = function generateMixed(n) {
      var res = "";
      for (var i = 0; i < n; i++) {
        var id = Math.ceil(Math.random() * 35);
        res += chars[id];
      }
      return res;
    }
    module.exports = {
      random: random,
    }
    

    相关文章

      网友评论

          本文标题:随机字符串函数

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