Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM lastModified Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The DOM lastModified property in HTML is used to return the date and time of the current document that was last modified. This property is read-only. This property returns a string which contains the date and time when the document was last modified. 

Syntax:

document.lastModified

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
      DOM lastModified Property
    </title>
</head>
 
<body style="text-align:center">
 
    <h1 style="color:green;">
            GeeksForGeeks
        </h1>
 
    <h2>
            DOM lastModified Property
        </h2>
    <button onclick="geeks()">
        Submit
    </button>
 
    <p id="sudo"></p>
 
    <script>
        /* Function to use lastModified property */
        function geeks() {
            var x = document.lastModified;
            document.getElementById("sudo").innerHTML = x;
        }
    </script>
</body>
 
</html>    

Output:

  

Supported Browsers: The browser supported by DOM lastModified Property are listed below:

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 4
  • Firefox 1
  • Opera 12.1
  • Safari 1
My Personal Notes arrow_drop_up
Last Updated : 08 Jul, 2022
Like Article
Save Article
Similar Reads
Related Tutorials