Answers for "random string length javascript"

6

javascript function generate a random string

//Create a function that returns a string, of a given length
const genRand = (len) => {
  return Math.random().toString(36).substring(2,len+2);
}

console.log(genRand(8));
//Expected output example: 4yg020wn
Posted by: Guest on December-15-2021
7

random string js

const string_length = 10
[...Array(string_length)].map(i=>(~~(Math.random()*36)).toString(36)).join('')
Posted by: Guest on September-04-2020

Code answers related to "random string length javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language