Created
December 29, 2020 05:20
-
-
Save JRSalasM/bfa861ddb216095b6f12bc3dee8f5ff0 to your computer and use it in GitHub Desktop.
JS - años, meses, días de una fecha
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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