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

Object.keys và Object.getOwnPropertyNames

Object.keys và Object.getOwnPropertyNames

try/catch es10

An update for developer convience allows the use of try/catch without an explicit e Error reference in the catch call.

Callback in javascript

Callback in javascript

kiểm tra email trong javascript

kiểm tra email trong javascript

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

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