Created
July 23, 2020 22:13
-
-
Save rohitsaini1196/ebca2af55e0853ba1f386768ae869761 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Fastest way to generate random string in JavaScript | |
var x = Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15) | |
console.log(x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment