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 + gì

promise + gì

Remove item in array javascript es6

Những bạn nào mà đã sử dụng ES6 một thời gian rồi thì có thể sử dụng method array.filter()

How to reverse an Array?

Reversing an array in JS is really simple with the standard array method. Like below

using Typescript callback style error handling

Callback in javascript

Callback in javascript