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

Extend Object javascript

Extend Object javascript

Promise + gì

promise + gì

Async await in javascript

Async await in javascript

Random String

Random String với độ dài tuỳ chọn

Await in a for loop

How to Await in a for loop