Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
const timestamp = 1652800307169; 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: 2022 5 17 */