Skip to content

Instantly share code, notes, and snippets.

@JRSalasM
Created December 29, 2020 05:20
Show Gist options
  • Save JRSalasM/bfa861ddb216095b6f12bc3dee8f5ff0 to your computer and use it in GitHub Desktop.
Save JRSalasM/bfa861ddb216095b6f12bc3dee8f5ff0 to your computer and use it in GitHub Desktop.
JS - años, meses, días de una fecha
const date_entry = moment(value.fch_ingreso, "YYYY-MM-DD");
const date_cese = moment(liquidation.date_cese, "YYYY-MM-DD");
let years = Math.trunc(date_cese.diff(date_entry, "years", true));
let months = Math.trunc(date_cese.diff(date_entry, "months", true) - years * 12);
let days = Math.round(
(date_cese.diff(date_entry, "months", true) - years * 12 - months) * 30.4167
);
console.log(`${years} año(s) ${months} mes(es) ${days} dia(s)`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment