JSFiddle - React, Tailwind, and code Playground
by vinodlouis
HTML
<select id="selectElementId"></select>
JavaScript
var min = 2012,
max = 2021,
select = document.getElementById('selectElementId');
for (var i = min; i<=max; i++){
var opt = document.createElement('option');
opt.value = i;
opt.innerHTML = i;
select.appendChild(opt);
}