安琪酵母(西藏)益生菌信息采集中心智能实验室
longyvfengyun
2023-06-15 9e161eb46e5f0633079d0a71bae7dbdbfdec2deb
1
2
3
4
5
6
7
8
9
10
const creatCode = ()=>{
  let chars = "abcdefghijkmnrstuvwxyABCDEFGHJKMNPQRSTUVWXY13456789".split('');
  let randCode = "";
  for (let i = 0; i < 4; i++) {
    let randPosition = Math.floor(Math.random() * (chars.length - 1));
    randCode += chars[randPosition];
  }
  return randCode;
}
export default creatCode;