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
String.prototype.trimEnd
trimEnd() Phương thức xóa khoảng trắng từ đầu chuỗi và trả về một chuỗi mới. Có nghĩa là trimEnd() xoá những ký tự space bên phải mà không làm thay đổi chuỗi gốc.
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.
try/catch es10
An update for developer convience allows the use of try/catch without an explicit e Error reference in the catch call.
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()
Converting Object to an Array
Converting Object to an Array