Skip to content

Instantly share code, notes, and snippets.

View uzbeki's full-sized avatar
👋
not running out of problems to solve

Bekhruz Otaev uzbeki

👋
not running out of problems to solve
View GitHub Profile
@uzbeki
uzbeki / Random-string
Created April 18, 2021 07:47 — forked from 6174/Random-string
Generate a random string in JavaScript In a short and fast way!
//http://stackoverflow.com/questions/105034/how-to-create-a-guid-uuid-in-javascript
Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);