Last active 1752987404

Great for simple dynamic items, like a dynamic html ID suffix

randomAlphaNumeric.js Raw
1# Returns random a-z0-9 pattern of 9 characters
2# Example: qhp050kba
3
4function randomAlphaNumeric() {
5 return Math.random().toString(36).slice(2)
6}