<html>
<body>
<h1>The Document Object</h1>
<h2>The lastModified Property</h2>
<p>This document was last modified:</p>
<p id="demo"></p>
<script>
let text = document.lastModified;
document.getElementById("demo").innerHTML = text;
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_document_lastmodified by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:39 GMT -->
</html>