function randStr(n) { var str = ''; for (var i = 0; i < n; i++) { str += String.fromCharCode(Math.floor(Math.random() * 26) + 97); } return str; }