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

promise in javascript

promise in javascript

flatMap()

Use flatMap() creates a new array with sub-array elements flattened by specified depth.

Converting Object to an Array

Converting Object to an Array

Random String

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

encode/decode base64 with JS

Encoding to base64 is done with the btoa command