# Cách check valid date từ day, month, year

const date = new Date(`${year}-${month}-${day}`)
const isValidDate = (Boolean(+date) && date.getDate() == day)