获取昨天的日期JavaScript 版本
const yesterday = ((d) => new Date(d.setDate(d.getDate() - 1)))(new Date());// Orconst yesterday = new Date(new Date().valueOf() - 1000 * 60 * 60 * 24);
TypeScript 版本
const yesterday: Date = ((d) => new Date(d.setDate(d.getDate() - 1)))(new Date());// Orconst yesterday: Date = new Date(new Date().valueOf() - 1000 * 60 * 60 * 24);
初始化当前日期但将时间设置为午夜JavaScript 版本
const midnightOfToday = () => new Date(new Date().setHours(0, 0, 0, 0));
TypeScript 版本
const midnightOfToday = (): Date => new Date(new Date().setHours(0, 0, 0, 0));
对日期数组进行排序JavaScript 版本
// `arr` 是一个包含 `Date` 项的数组const sortDescending = (arr) => arr.sort((a, b) => a.getTime() > b.getTime());const sortAscending = (arr) => arr.sort((a, b) => a.getTime() < b.getTime());
TypeScript 版本
const sortDescending = (arr: Date[]): Date[] => arr.sort((a, b) => a.getTime() - b.getTime());const sortAscending = (arr: Date[]): Date[] => arr.sort((a, b) => b.getTime() - a.getTime());
- 2步详解求生之路1秘籍使用教程步骤 求生之路1秘籍代码大全
- 常用win快捷键大全表 电脑切换窗口快捷键
- 常用食品干燥剂 常用食品干燥剂化学式
- ppt制作方法与技巧 ppt制作过程中的常用小技巧
- 烧烤食材清单大全 家庭烧烤食材清单大全
- 软件实施linux常用命令 linux版本控制软件
- 网络营销常用的十种方法解析 关于网络营销的那些
- 网络营销常用的十种方法解析 网络营销营销手段有哪些
- 五行属金寓意最好的字 五行属金的字男孩常用
- 蒙田提出的8个教学方法是什么 常用的八种教学方法