If I have stored a duration in milliseconds, let’s say 1111 milliseconds and I want to display it as, in this example, “1 second, 111 milliseconds”, using Intl.DurationFormat
:
new Intl.DurationFormat('en', {style: "long"}).format(myDuration);
Is there a simple way to do that with the Temporal API?