Lấy tháng hiện tại trong javascript

date,tipjs,function

Lấy tháng hiện tại trong javascript

const getMonth = (fillFlag=true) => {
  const mon = new Date().getMonth() + 1
  const monRe = mon
  if (fillFlag) mon < 10 ? `0${mon}` : mon
  return monRe
}
console.log(getMonth());//5

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

kiểm tra email trong javascript

kiểm tra email trong javascript

Remove array of objects from another array of objects

Remove array of objects from another array of objects

Extend Object javascript

Extend Object javascript

Merge Array

How to combine two sorted arrays into one? We can do this easily with the spread operator.

Getting the last element of a split string array

Getting the last element of a split string array