The below call returns 24:00 in latest Chrome & Opera, while it previously returned 00:00, is this a by design behavior?
const [, time] = new Date(2020, 1, 1, 0, 0).toLocaleDateString("en-us",
{
hour12: false,
hour: "2-digit",
minute: "2-digit"
}).split(", ");
console.info(time); // 24:00