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

Làm phẳng mảng dùng phương pháp đệ quy

Làm phẳng mảng dùng phương pháp đệ quy

Merge Array

How to combine two sorted arrays into one? We can do this easily with the spread operator.

Lấy ngày hiện tại trong javascript

Lấy ngày hiện tại trong javascript

Promise + gì

promise + gì

Sự khác biệt giữa substr và substring

Sự khác biệt giữa substr() và substring() chức năng trong JS là gì?