Skip to content

Instantly share code, notes, and snippets.

View pujansrt's full-sized avatar

Pujan Srivastava pujansrt

View GitHub Profile
@pujansrt
pujansrt / generatePassword.js
Last active March 24, 2019 06:23
Generate Random Password (JS)
const alphabet = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".split('');
function generatePassword(L){
return Array.from({length: L})
.map(i => alphabet[Math.floor(Math.random() * alphabet.length)])
.join("")
}
console.log(generatePassword(14));