CristhGunners - Desarrollador de Software

Cristhofer Andana

Desarrollador de Software

Convertir Date a Timestamp en Javascript

js

diciembre 10, 2022

Como convertir Date a Timestamp en Javascript :

const timestamp = +new Date("2022-11-21");

// 👇️ '1668988800000'
console.log(timestamp);