I have an html file, and am using lastModified to display the date, but the default format is not what I want. So, I have this:
<p>Last Updated: <span id="modify"></span>.</p>
<script>
document.getElementById("modify").innerHTML = document.lastModified
</script>
What this displays is: Last Updated: 01/26/2021 23:58:01.
What I want is: Last Updated: January 26, 2021.
What's the best way to do this?
question from:
https://stackoverflow.com/questions/65915342/how-to-format-the-display-of-lastmodified-date 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…