Format the time using numeric

by David Storey

JavaScript

var timeFormat = new Intl.DateTimeFormat("en-GB", {
    hour: "numeric",
    minute: "numeric",
    second: "numeric"
});

console.clear();
console.dirxml(timeFormat.resolvedOptions());