码迷,mamicode.com
首页 > 微信 > 详细

微信小程序生成随机数

时间:2019-07-20 13:11:45      阅读:889      评论:0      收藏:0      [点我收藏+]

标签:math   and   随机   for   dom   rand   程序   export   ons   

const charts = [‘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 += charts[id];
}
return res;
}
export = {random}

微信小程序生成随机数

标签:math   and   随机   for   dom   rand   程序   export   ons   

原文地址:https://www.cnblogs.com/rgqjson/p/11217262.html

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