码迷,mamicode.com
首页 > 其他好文 > 详细

随机生成字符串,可用来当id

时间:2020-03-25 12:05:40      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:var   length   and   ons   OLE   def   bcd   floor   random   

// 随机生成字符串
RandomNumb(n) {
let str = ‘abcdefghijklmnopqrstuvwxyz9876543210‘;
let tmp = ‘‘,
i = 0,
l = str.length;
for (i = 0; i < n; i++) {
tmp += str.charAt(Math.floor(Math.random() * l));
}
return tmp;
}
var id = vm.RandomNumb(20)
console.log(id)

随机生成字符串,可用来当id

标签:var   length   and   ons   OLE   def   bcd   floor   random   

原文地址:https://www.cnblogs.com/lihong-123/p/12565092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!