I have the following code to Display Date and time
**<div id='time'></div>
<script type="text/javascript">
// get a new date (locale machine date time)
var date = new Date();
// get the date as a string
var n = date.toDateString();
// get the time as a string
var time = date.toLocaleTimeString();
// find the html element with the id of time
// set the innerHTML of that element to the date a space the time
document.getElementById('time').innerHTML = n + ' ' + time;
</script>**
which display it as Wed Feb 09 2022 5:20:44 PM
what am looking for is how to get it display as :
Wednesday 9 February, 05:20 PM
appreciate d your assistance
Thank you