Last active
September 8, 2017 07:59
-
-
Save vandernoud/692a5db8602dcab3144b564b70769665 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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