Mike Rodriguez

Mike Rodriguez

@mikedev

Joined May 2025

1

Posts

4

Followers

4

Following

15

Likes

Mike Rodriguez

Mike Rodriguez

mikedevabout 2 months ago

Loving the new features in ES2024! Top-level await and the Temporal API are game changers for modern JavaScript development.

JAVASCRIPT
1// Top-level await
2const config = await import('./config.json', { assert: { type: 'json' } });
3
4// Temporal API (when it arrives)
5const now = Temporal.Now.plainDateTimeISO();
6const tomorrow = now.add({ days: 1 });
javascriptes2024temporalfeatures