node generate random string code example
Example 1: javascript generate random string
Math.random().toString(36).substring(2);
Example 2: random string generator node js
function makeid(length) {
var result = [];
var characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
var charactersLength = characters.length;
for ( var i = 0; i < length; i++ ) {
result.push(characters.charAt(Math.floor(Math.random() *
charactersLength)));
}
return result.join('');
}
console.log(makeid(5));
Example 3: random string js
const string_length = 10
[...Array(string_length)].map(i=>(~~(Math.random()*36)).toString(36)).join('')
Example 4: how to generate random string in node js
var crypto = require("crypto");
var id = crypto.randomBytes(20).toString('hex');
Example 5: random alphabet javascript
Math.random().toString(36).substr(2, 5);
Example 6: how to generate random string in javascript
Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);