javascript string of n random characters code example
Example 1: javascript generate random string
// Generate a random alphanumerical string of length 11 ( change substring parameter for other length)
Math.random().toString(36).substring(2);
Example 2: random alphabet javascript
Math.random().toString(36).substr(2, 5);