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());//3

Có thể bạn đã miss một số snippets code

await axios get

await axios get

Object.keys và Object.getOwnPropertyNames

Object.keys và Object.getOwnPropertyNames

Hàm lày ngày trong tuần javascript

Hàm lày ngày trong tuần javascript

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.

How to reverse an Array?

Reversing an array in JS is really simple with the standard array method. Like below