Answers for "two date object minus js"

2

subtracting two date objects in javacript

function findDayDifference(date1, date2) {
	// always round down
  return Math.floor((Math.abs(date2-date1))/(1000*60*60*24));
}
Posted by: Guest on October-22-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language