30秒学会 JavaScript 片段 · 2019年8月10日

30秒学会 JavaScript 片段 – isAfterDate

Check if a date is after another date.

Use the greater than operator (>) to check if the first date comes after the second one.

代码片段

const isAfterDate = (dateA, dateB) => dateA > dateB;

使用样例

isAfterDate(new Date(2010, 10, 21), new Date(2010, 10, 20)); // true