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)); //TjCyyzCó thể bạn đã miss một số snippets code
Ajax, call jQuery POST to node.js expressjs
Ajax, call jQuery POST to node.js expressjs
try/catch es10
An update for developer convience allows the use of try/catch without an explicit e Error reference in the catch call.
Filter Unique Values
Kiểu đối tượng Set đã được giới thiệu trong ES6 và cùng với ..., ‘spread’ operator, chúng ta có thể sử dụng nó để tạo một mảng mới chỉ với các giá trị duy nhất.
Await in a for loop
How to Await in a for loop
Đếm số phần tử trong mảng JavaScript
Đếm số lần xuất hiện của các phần tử trong mảng JavaScript