迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > TypeScript >

如何比较 TypeScript 中的日期

作者:迹忆客 最近更新:2022/09/22 浏览次数:

要在 TypeScript 中比较日期:

  1. 在每个日期调用 getTime() 方法以获取时间戳。
  2. 比较日期的时间戳。
  3. 如果某个日期的时间戳大于另一个日期的时间戳,则该日期在后面。
const date1 = new Date('2022-04-16T06:55:31.820Z');
const date2 = new Date('2022-04-26T09:30:24.820Z');

// ✅ compare dates in TypeScript ✅
if (date1.getTime() === date2.getTime()) {
  console.log('dates are the same');
} else {
  console.log('dates are NOT the same');
}

if (date1.getTime() > date2.getTime()) {
  console.log('date1 comes after date2');
} else if (date1.getTime() < date2.getTime()) {
  console.log('date2 comes after date1');
} else {
  console.log('dates are the same');
}

// ---------------------------------------------------------

// ✅ compare dates WITHOUT time in TypeScript ✅

const date1WithoutTime = new Date(date1.getTime());
const date2WithoutTime = new Date(date2.getTime());

date1WithoutTime.setUTCHours(0, 0, 0, 0);
date2WithoutTime.setUTCHours(0, 0, 0, 0);

if (date1WithoutTime.getTime() === date2WithoutTime.getTime()) {
  console.log('dates are the same');
} else {
  console.log('dates are not the same');
}

if (date1WithoutTime.getTime() > date2WithoutTime.getTime()) {
  console.log('date1 comes after date2');
} else if (date1WithoutTime.getTime() === date2WithoutTime.getTime()) {
  console.log('date1 and date2 are the same');
} else {
  console.log('date2 comes after date1');
}

代码片段显示了 2 个示例:

  1. 如何比较 TypeScript 中的日期,包括时间。
  2. 如何在没有时间的情况下比较 TypeScript 中的日期。

我们使用 Date() 构造函数创建了 2 个日期对象。第一个日期是 2022 年 4 月 16 日,第二个日期是 2022 年 4 月 26 日。

getTime 方法返回 1970 年 1 月 1 日 00:00:00 和给定日期之间经过的毫秒的时间戳。

如果一个日期的时间戳大于另一个日期的时间戳,则第一个日期在第二个日期之后。

另一方面,如果两个日期的时间戳相等,则这两个日期表示完全相同的时间点(包括小时、分钟、秒和毫秒)。

我们可以比较 getTime() 的输出,就像比较 TypeScript 中的数字一样。

有时我们需要比较两个日期而忽略时间组件。

要在 TypeScript 中比较两个没有时间的日期:

  1. 创建每个日期的副本。
  2. 使用 setUTCHours() 方法将复制日期的时间设置为午夜。
  3. 比较在日期上调用 getTime() 方法的输出。
const date1 = new Date('2022-04-16T06:55:31.820Z');
const date2 = new Date('2022-04-16T09:30:24.820Z');

// ✅ compare dates WITHOUT time in TypeScript

const date1WithoutTime = new Date(date1.getTime());
const date2WithoutTime = new Date(date2.getTime());

date1WithoutTime.setUTCHours(0, 0, 0, 0);
date2WithoutTime.setUTCHours(0, 0, 0, 0);

if (date1WithoutTime.getTime() === date2WithoutTime.getTime()) {
  console.log('dates are the same');
} else {
  console.log('dates are not the same');
}

if (date1WithoutTime.getTime() > date2WithoutTime.getTime()) {
  console.log('date1 comes after date2');
} else if (date1WithoutTime.getTime() === date2WithoutTime.getTime()) {
  console.log('date1 and date2 are the same');
} else {
  console.log('date2 comes after date1');
}

示例中的两个日期对象表示 2022 年 4 月 16 日。

为了能够比较日期并忽略时间,我们必须将日期的时间重置为午夜(或简单地相同的小时、分钟、秒和毫秒)。

setUTCHours 方法将小时、分钟、秒和毫秒作为参数,并根据通用时间设置给定日期的值。

但是setUTCHours 方法会更改 Date 对象,这可能不是我们想要的。

这就是为什么我们使用 getTime 方法来获取从 1970 年 1 月 1 日 00:00:00 到给定日期之间经过的毫秒的时间戳。

我们可以将时间戳传递给 Date() 构造函数以创建 Date 对象的副本。

我们使用 setUTCHours 方法将日期的时间设置为午夜,因此我们可以忽略时间来比较日期。

getTime 方法返回一个数字,表示 Unix 纪元和给定日期之间经过的毫秒数。

// 👇️ 1650094409568
console.log(new Date().getTime());

如果我们有两个日期存储相同的年、月和日,那么时间戳将相等,因为我们将两个日期的时间都设置为午夜。

如果一个日期大于另一个日期,那么它的时间戳将存储一个更大的数字,因为在 Unix 纪元和特定日期之间已经过去了更多的时间。

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 TypeScript 中返回一个 Promise

发布时间:2023/03/19 浏览次数:182 分类:TypeScript

本教程讨论如何在 TypeScript 中返回正确的 Promise。这将提供 TypeScript 中 Returns Promise 的完整编码示例,并完整演示每个步骤。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便