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

生成随机数

时间:2020-03-02 12:39:02      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:math   生成   bsp   floor   随机数   ons   return   and   随机   

createCode () {

      const str = ‘abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789‘;

      let text = ‘‘;

      for (let i = 0; i < 20; i++) {

        const number = Math.floor(Math.random() * str.length);

        const t = str.charAt(number);

        text += t;

      }

      return text;

    }

生成随机数

标签:math   生成   bsp   floor   随机数   ons   return   and   随机   

原文地址:https://www.cnblogs.com/fczbk/p/12394715.html

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