Skip to content

Instantly share code, notes, and snippets.

@esedic
Last active March 3, 2024 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save esedic/4e6284a70b04a532d520415af4e0588e to your computer and use it in GitHub Desktop.
Save esedic/4e6284a70b04a532d520415af4e0588e to your computer and use it in GitHub Desktop.
Insert current year in HTML with JavaSCript
<!-- v1 -->
<p>&copy; <script>
document.currentScript.insertAdjacentHTML('afterend', '<time datetime="' + new Date().toJSON() + '">' + new Intl.DateTimeFormat(document.documentElement.lang, {
year: 'numeric'
}).format() + '</time>');
</script> All rights reserved.</p>
<!-- v2 -->
<p>&copy; <script>document.write(new Date().getFullYear());</script> All rights reserved</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment