How to format a date as minutes in Javascript
Say we have a Date object representing five minutes: const fiveMinutes = new Date(0, 0, 0, 0, 5, 0); How can you format this date to display "5:00"? The easiest way is using Intl.DateTimeFormat browser API (see docs). This formats the Date as a string, according ...