Generate random string/characters in JavaScript

Tom Lehman picture Tom Lehman · Aug 28, 2009 · Viewed 1.6M times · Source

I want a 5 character string composed of characters picked randomly from the set [a-zA-Z0-9].

What's the best way to do this with JavaScript?

Answer

csharptest.net picture csharptest.net · Aug 28, 2009

I think this will work for you:

function makeid(length) {
   var result           = '';
   var characters       = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
   var charactersLength = characters.length;
   for ( var i = 0; i < length; i++ ) {
      result += characters.charAt(Math.floor(Math.random() * charactersLength));
   }
   return result;
}

console.log(makeid(5));