Skip to content

Instantly share code, notes, and snippets.

@devpruthvi
Created October 5, 2014 09:53
Show Gist options
  • Select an option

  • Save devpruthvi/deba8f0cedb2dd9f105e to your computer and use it in GitHub Desktop.

Select an option

Save devpruthvi/deba8f0cedb2dd9f105e to your computer and use it in GitHub Desktop.
<pre class="brush: jscript; title: ; notranslate" title="">
var generate = function (len, chars) {
var ret = '',
charsLen = chars.length;
while (len--) {
ret += chars[Math.floor(Math.random() * charsLen)];
}
return ret;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment