Skip to content

Instantly share code, notes, and snippets.

@syguer
Created December 15, 2013 07:57
Show Gist options
  • Save syguer/7970193 to your computer and use it in GitHub Desktop.
Save syguer/7970193 to your computer and use it in GitHub Desktop.
Create ramdom String
var randobet = function(n) {
var a = 'abcdefghijklmnopqrstuvwxyz'
+ 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+ '0123456789';
a = a.split('');
var s = '';
for (var i = 0; i < n; i++) {
s += a[Math.floor(Math.random() * a.length)];
}
return s;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment