HTML DOM Document lastModified attribute
- Halaman sebelumnya inputEncoding
- Halaman berikutnya links
- Kembali ke lapisan atas Documents DOM HTML
Definition and usage
lastModified
The property returns the date and time of the last modification of the document.
lastModified
The property is read-only.
hint
The 'try it yourself' instance always returns the current date/time because the document is created at runtime.
instance
Example 1
Get the date and time of the last modification of the document:
let text = document.lastModified;
Example 2
Convert the lastModified attribute to a date object:
const date = new Date(document.lastModified);
syntax
document.lastModified
return value
type | description |
---|---|
string | The date and time of the last modification of the document. |
browser support
document.lastModified
Adalah fitur DOM Level 3 (2004).
Semua pelayar mendukungnya:
Chrome | IE | Edge | Firefox | Safari | Opera |
---|---|---|---|---|---|
Chrome | IE | Edge | Firefox | Safari | Opera |
Dukungan | 9-11 | Dukungan | Dukungan | Dukungan | Dukungan |
- Halaman sebelumnya inputEncoding
- Halaman berikutnya links
- Kembali ke lapisan atas Documents DOM HTML