so im getting a date and time from the user by using datetime-local input type when display the value on my page, it looks like this: 2023-05-31T15:09
how can i change the date format to look more... readable? like: "31-05-2023, 15:09" etc dosnt really matter if there is "-" or "/" between date numbers.
const Date = document.getElementById("date").value
console.log(Date)
<input id="date" type="datetime-local" />