【DRAFT】ES2025 的语法糖科普
不知不觉 ES2025 都快推出了,这里分享一些比较有趣的用法。 Time API 更新的时间API // Simplified date creation const now = Temporal.now(); const birthday = @2024-01-15; // New date literal syntax const meeting = @2024-12-25T10:30:00[Asia/Shanghai]; // Syntactic sugar for date/time arithmetic const nextWeek = now + 7.days; const lastMonth = now - 1.month; const deadline = meeting + 2.hours + 30.minutes; // Time range syntax const 详情 »