js相关

js 自动生成随机四位数

const key = Math.random().toString(36).substr(2, 4);
解析: toString(36): 格式为36位的编码

WuYiLong原创小于 1 分钟jsjs