I tried comparing 2 same dates in the chrome console:
new Date("2021-06-23") == new Date("2021-06-23")
It is giving false
new Date("2021-06-23") > new Date("2021-06-23")
It is giving false
But, new Date("2021-06-23") >= new Date("2021-06-23")
It is giving true
I couldn't understand why it is giving true for greater than or equal to but false for both greater than also and for equals to as well.
Please explain.