I am building a web app that is a visual representation of data sorted by year, and currently have an ordered list of years in the html, i.e.:
<ol id="years">
<li>1900</li>
<li>1901</li>
<li>1902</li>
…
<li>1950</li>
</ol>
I would prefer that the list was automatically generated on page load by javascript, as it's likely that the year range will change over time, and I don't want to risk the javascript and HTML getting out of sync.
For other functions I am already declaring variables firstYear and lastYear that match up to the first and last items in that list, i.e.:
var firstYear = 1900;
var lastYear = 1950;
I've tried to base some code on what looks like a similar question but have not quite figured out how to adapt it properly to my app's requirements.
If anyone can help me write the function to do this, it would be greatly appreciated.