Skip to content

Instantly share code, notes, and snippets.

@hsnyc
Last active May 2, 2023 18:05
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 hsnyc/7a93d16acf5a47a04a9eae8141c61a8a to your computer and use it in GitHub Desktop.
Save hsnyc/7a93d16acf5a47a04a9eae8141c61a8a to your computer and use it in GitHub Desktop.
Update the Year in the page footer
<footer>
<div class="wrapper">&copy;<span id="current-year">2019</span> HSNYC</div>
</footer>
// Place Current Year in Page Footer ===================//
let date = new Date();
let currentYear = date.getFullYear();
let yearSpan = document.getElementById('current-year');
yearSpan.innerHTML = currentYear;
// End
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment