funtion fn(len){
let stringA = ‘abcd.....890‘;
let length = stringA.length;
let temp = ‘‘;
for(let i=0;i<len;i++){
temp += stringA.CharAt(Math.floor(Math.random( )*length));
}
return temp;
}
相关文章
- 10-17生成任意长度的随机数 JS
- 10-17js生成随机固定长度字符串的简便方法
- 10-17C#与JS实现 获取指定字节长度 中英文混合字符串 的方法
- 10-17js实现任意长度的伪随机字符串