导语
歌谣 歌谣 我们需要生成一个随机的字符串 这边有什么方式可以处理呢 有没有比较好的方式
编辑
解决思路
getRandomWord = () => { const nowDate = new Date() .getTime() .toString() .substr(5, 15); const randowStr = Math.random() .toString(36) .substr(2); console.log(nowDate) console.log(randowStr) return `${nowDate}${randowStr}`; }; console.log(getRandomWord()) console.log(getRandomWord())
运行结果
36350842
vh4lt4hblv
36350842vh4lt4hblv
36350845
s9djhngpieq
36350845s9djhngpieq
总结
天下大事 必作于细 相信积累的力量