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
Ajax, call jQuery POST to node.js expressjs
Ajax, call jQuery POST to node.js expressjs
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()
Detect when your site is visible to users
Detect when your site is visible to users
Rest Operator for Objects
Now we can use rest on the properties of an Object. It allows us to explicitly extract certain named variables, and assign any uncalled variables into a catchall Object.