Contact: aviboots(AT)netvision.net.il
39,890 questions
51,821 answers
573 users
const timestamp = 1612800307168; const date = new Date(timestamp); const year = date.getFullYear(); console.log(year); const month = date.getMonth(); console.log(month + 1); const day = date.getDate(); console.log(day); /* run: 2021 2 8 */