生成一个长度为 11 的随机字母字符串
Math.random().toString(36).substring(2);
生成一个随机十六进制代码,如 #c618b2
'#' + Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, '0');
2021-08-27 19:38:10
Math.random().toString(36).substring(2);
#c618b2
'#' + Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, '0');
下一篇:js之在函数参数中解构嵌套对象