In the new Date () method, minutes up to 10 are displayed without 0 (for example, 17:05 is displayed as 17: 5; 18:09 as 18: 9, ...). Why is 0 not displayed in minutes?
new Date().getHours() +":"+ new Date().getMinutes() +"; "+new Date().getDate() + " "+ (new Date().toLocaleString("en-us", { month: "long" })) + " "+new Date().getFullYear()