Random String

tipjs,random

Random String với độ dài tuỳ chọn

function randomString(e) {    
    e = e || 32;
    var t = "ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678",
    a = t.length,
    n = "";
    for (i = 0; i < e; i++) n += t.charAt(Math.floor(Math.random() * a));
    return n
}
alert(randomString(6)); //TjCyyz

Có thể bạn đã miss một số snippets code

Getting the last element of a split string array

Getting the last element of a split string array

Detect when your site is visible to users

Detect when your site is visible to users

JavaScript: async/await with forEach

JavaScript: async/await with forEach()

Random Number javascript

Random Number javascript

Await in a for loop

How to Await in a for loop