Primera y última fecha del mes actual

Code with Edd

Primera y última fecha del mes actual en javascript/typescript (angular).

Se obtiene la primera y última fecha del mes actual. Tambien se obtiene el mes y el año.

const date = new Date();

const initial = new Date(date.getFullYear(), date.getMonth(), 1);
const end = new Date(date.getFullYear(), date.getMonth() + 1, 0);

this.docdate1 = formatDate(initial, 'yyyy-MM-dd', 'es');
this.docdate2 = formatDate(end, 'yyyy-MM-dd', 'es');

this.dateMonth = String(formatDate(date, 'MMMM', 'es')).toUpperCase();
this.dateYear = formatDate(date, 'yyyy', 'es');

Referencia

Stackoverflow

Primera y última fecha del mes actual
Web | + posts

Full Stack Web Developer && SDK SAPB1 Developer.

Melómano, Gamer (Xbox), Comprador compulsivo de Amazon y Posiblemente con TDAH.

Scroll hacia arriba