李振良 Go/Golang DevOps運(yùn)維開發(fā)實(shí)戰(zhàn)集訓(xùn)營
在兩個數(shù)字之間生成一個隨機(jī)數(shù)
這將以兩個數(shù)字為參數(shù),并將在這兩個數(shù)字之間生成一個隨機(jī)數(shù)!
const random = (min, max) => Math.floor(Math.random() * (max - min + 1) + min);console.log(random(1, 50));// could be anything from 1 - 50
07-生成隨機(jī)字符串(唯一ID?)
也許你需要臨時的唯一ID,這是一個技巧,你可以使用它在旅途中生成隨機(jī)字符串。
const randomString = () => Math.random().toString(36).slice(2);console.log(randomString());// could be anything!!!
標(biāo)簽: