/*
* http://stackoverflow.com/a/8084248
* Return n random characters
* n = 1 by default
*/
function randomCharacters(n) {
return Math.random().toString(36).substr(2, (n || 1));
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.