Published
- 1 min read
generate random hash in javascript
The solution for this is noted below
generate random hash in javascript
Solution
let r = Math.random().toString(36).substring(7);
console.log("random", r);
Try other methods by searching on the site. That is if this doesn’t work