Hàm lày ngày trong tuần javascript
tipjs,date,function
Hàm lày ngày trong tuần javascript
const getWhatDay = () => {
return new Date().getDay() ? new Date().getDay() : 7
}
console.log(getWhatDay());//3Có thể bạn đã miss một số snippets code
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.
encode/decode base64 with JS
Encoding to base64 is done with the btoa command
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.
flatMap()
Use flatMap() creates a new array with sub-array elements flattened by specified depth.
Ajax, call jQuery POST to node.js expressjs
Ajax, call jQuery POST to node.js expressjs