I need to update a few hundred static HTML pages that have the copyright date hard coded in the footer. I want to replace it with some JavaScript that will automatically upd
For React.js, the following is what worked for me in the footer...
render() { const yearNow = new Date().getFullYear(); return ( © Company 2015-{yearNow} ); }