Last active
August 4, 2022 01:30
-
-
Save Octagon-simon/5c7f47bb40c0b3d0688beac7b5fbb582 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| function calcDate(date1, date2){ | |
| /* | |
| * calcDate() : Calculates the difference between two dates | |
| * @date1 : "First Date in the format MM-DD-YYYY" | |
| * @date2 : "Second Date in the format MM-DD-YYYY" | |
| * return : Array | |
| */ | |
| //new date instance | |
| const dt_date1 = new Date(date1); | |
| const dt_date2 = new Date(date2); | |
| //Get the Timestamp | |
| const date1_time_stamp = dt_date1.getTime(); | |
| const date2_time_stamp = dt_date2.getTime(); | |
| let calc; | |
| //Check which timestamp is greater | |
| if (date1_time_stamp > date2_time_stamp) { | |
| calc = new Date(date1_time_stamp - date2_time_stamp); | |
| } else { | |
| calc = new Date(date2_time_stamp - date1_time_stamp); | |
| } | |
| //Retrieve the date, month and year | |
| const calcFormatTmp = calc.getDate() + '-' + (calc.getMonth() + 1) + '-' + calc.getFullYear(); | |
| //Convert to an array and store | |
| const calcFormat = calcFormatTmp.split("-"); | |
| //Subtract each member of our array from the default date | |
| const days_passed = Number(Math.abs(calcFormat[0]) - 1); | |
| const months_passed = Number(Math.abs(calcFormat[1]) - 1); | |
| const years_passed = Number(Math.abs(calcFormat[2]) - 1970); | |
| //Set up custom text | |
| const yrsTxt = ["year", "years"]; | |
| const mnthsTxt = ["month", "months"]; | |
| const daysTxt = ["day", "days"]; | |
| //Convert to days and sum together | |
| const total_days = (years_passed * 365) + (months_passed * 30.417) + days_passed; | |
| //display result with custom text | |
| const result = ((years_passed == 1) ? years_passed + ' ' + yrsTxt[0] + ' ' : (years_passed > 1) ? | |
| years_passed + ' ' + yrsTxt[1] + ' ' : '') + | |
| ((months_passed == 1) ? months_passed + ' ' + mnthsTxt[0] : (months_passed > 1) ? | |
| months_passed + ' ' + mnthsTxt[1] + ' ' : '') + | |
| ((days_passed == 1) ? days_passed + ' ' + daysTxt[0] : (days_passed > 1) ? | |
| days_passed + ' ' + daysTxt[1] : ''); | |
| //return the result | |
| return { | |
| "total_days": Math.round(total_days), | |
| "result": result.trim() | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment