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
Lấy ngày hiện tại trong javascript
Lấy ngày hiện tại trong javascript
snowflake là gì
snowflake là gì? Năm 2010, Twitter có nguồn mở Snowflake, một thuật toán tạo ID duy nhất trên toàn cầu được sử dụng bởi nhóm nội bộ của nó, được dịch thành Snowflake.
Spread Operator for Objects
Using the spread operator during an Object declaration will assign the properties of the referenced Object to the new Object.
Merge Array
How to combine two sorted arrays into one? We can do this easily with the spread operator.
Đếm có bao nhiêu items giống nhau trong một array
reduce javascript. Đếm có bao nhiêu items giống nhau trong một array