Math.random().toString(36)使用--- 随机生成数字与字母的组合
Math.random(): 生成的是随机16/17位小数.
通过toString(36): 发现小数点后的数字转为0·9a·z的值;
substring(3, 8): 从下标3开始,到8结束,不包括8
//生成的是随机16/17位小数 console.log(Math.random()); //0.02613552458980939 //通过toString(36)后发现小数点后的数字转为0·9a·z的值 console.log(Math.random().toString(36)); //0.uw2ikirke2g // 生成随机生成五个字母或数字的随机数 // substring从下标3开始,到8结束,不包括8 console.log(Math.random().toString(36).substring(3, 8)); //27s1l
声明 欢迎转载,但请保留文章原始出处:) 博客园:https://www.cnblogs.com/chenxiaomeng/
如出现转载未声明 将追究法律责任~谢谢合作