Skip to content

Instantly share code, notes, and snippets.

@vandernoud
Last active September 8, 2017 07:59
Show Gist options
  • Save vandernoud/692a5db8602dcab3144b564b70769665 to your computer and use it in GitHub Desktop.
Save vandernoud/692a5db8602dcab3144b564b70769665 to your computer and use it in GitHub Desktop.
setYearInFooter = function() {
var date = new Date();
var year = date.getFullYear();
var footerCopyright = document.querySelector('.footer__copyright');
footerCopyright.innerHTML = ('© ' + year + '- Vodafone Libertel B.V.');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment