The below function return a random string with given length
function randomString(length) { chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; var result = ''; for (var i = length; i > 0; --i) result += chars[Math.round(Math.random() * (chars.length - 1))]; return result; } var res = randomString(4); alert(res);
You might also like:
How to redirect one page to another page in php20-03-2017 redirect php |
How to use request module in node js16-03-2017 request module node js |
How to make an http request in node js14-03-2017 http module node js |
Navigate to another page using java script06-03-2017 javascript redirection navigation |
Filter for replace text in Angular Js05-03-2017 filter replace angular js |