1、生成[0,1)的随机数的Math.random
Math.random().toString().replace(".", "");// 生成唯一的id
2.获取当前时间戳Date.now,转换为其他进制的字符串
Date.now().toString(2);// 转成2进制
Date.now().toString(16);// 转成16进制
Date.now().toString(36);// 最大进制支持转为36进制,使用字符是0-9a-z
Math.random().toString().replace(".", "");// 生成唯一的id
Date.now().toString(2);// 转成2进制
Date.now().toString(16);// 转成16进制
Date.now().toString(36);// 最大进制支持转为36进制,使用字符是0-9a-z