Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

How to Perform Date Comparison With the Date Object in JavaScript

const compareDates = (d1, d2) => {
  let date1 = new Date(d1).getTime();
  let date2 = new Date(d2).getTime();

  if (date1 < date2) {
    console.log(`${d1} is less than ${d2}`);
  } else if (date1 > date2) {
    console.log(`${d1} is greater than ${d2}`);
  } else {
    console.log(`Both dates are equal`);
  }
};

compareDates("06/21/2022", "07/28/2021");
compareDates("01/01/2001", "01/01/2001");
compareDates("11/01/2021", "02/01/2022");

// This will return:

// "06/21/2022 is greater than 07/28/2021"
// "Both dates are equal"
// "11/01/2021 is less than 02/01/2022"
Comment

string compare on date in js

var d1 = Date.parse("2012-11-01");
var d2 = Date.parse("2012-11-04");
if (d1 < d2) {
    alert ("Error!");
}
Comment

compare date and time in js

var isLarger = new Date("2-11-2012 13:40:00") > new Date("01-11-2012 10:40:00");
Comment

date compare in js

var x = new Date('2013-05-23');
var y = new Date('2013-05-23');

// less than, greater than is fine:
x < y; => false
x > y; => false
x === y; => false, oops!

// anything involving '=' should use the '+' prefix
// it will then compare the dates' millisecond values
+x <= +y;  => true
+x >= +y;  => true
+x === +y; => true
Comment

compare date javascript

// solution is convert date to time by getTime()
start 		= startDate.getTime();
end 		= endDate.getTime();
current 	= date.getTime();

if (start <= current && current <= end) {
  // do something here
}
Comment

compare date value in javascript

Comparing two dates is as simple as

var differenceInMs = dateNewer - dateOlder;
So, convert the timestamps back into Date instances

var d1 = new Date('2013-08-02T10:09:08Z'), // 10:09 to
    d2 = new Date('2013-08-02T10:20:08Z'); // 10:20 is 11 mins
Get the difference

var diff = d2 - d1;
Format this as desired

if (diff > 60e3) console.log(
    Math.floor(diff / 60e3), 'minutes ago'
);
else console.log(
    Math.floor(diff / 1e3), 'seconds ago'
);
// 11 minutes ago
Comment

javascript compare dates

let d1 = new Date();
let d2 = new Date();
// can use >, <, <=, <=
d1 > d2
d1 >= d2
// == won't work so can use this:
(d1 >= d2) && (d2 >= d1)
Comment

javascript compare dates

let myDate = new Date("January 13, 2021 12:00:00");
let yourDate = new Date("January 13, 2021 15:00:00");

if (myDate < yourDate) {
  console.log("myDate is less than yourDate"); // will be printed
}
if (myDate > yourDate) {
  console.log("myDate is greater than yourDate");
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: js split array into smaller arrays 
Javascript :: aws amplify get JWT TOKEN 
Javascript :: chart js small bars too thin 
Javascript :: urlencoded limit nodejs express 
Javascript :: lodash pick 
Javascript :: jquery display modal bs4 
Javascript :: datepicker jquery year range 
Javascript :: dynamic route vue 
Javascript :: vuejs props 
Javascript :: angular pipe to capitalize first letter 
Javascript :: regular expression for email validation 
Javascript :: execute bash program using js 
Javascript :: javascript example of foreach loop 
Javascript :: add tab to textarea javascript 
Javascript :: for each of object 
Javascript :: javascript sum digits in string of numbers 
Javascript :: uploading file with fetch in js 
Javascript :: electron hide devtools 
Javascript :: unwind check after null or undefined 
Javascript :: jquery make visible 
Javascript :: recursion javascript 
Javascript :: ajax open new tab with post 
Javascript :: get query string javascript nodejs 
Javascript :: next js start 
Javascript :: jquery element width 
Javascript :: js list of objects 
Javascript :: javascript format date to dd-mm-yyyy 
Javascript :: concat js mdn 
Javascript :: how to icon font-awesome react cart 
Javascript :: mongoose update and return new 
ADD CONTENT
Topic
Content
Source link
Name
6+9 =