JSFiddle - React, Tailwind, and code Playground

HTML

<select id="AgeDropdownId" name="AgeDropdown"  class="AgeDropdown" > 
    <option value="0">select no</option>
</select>

JavaScript

var ddl = document.getElementById('AgeDropdownId');

for (var i = 1; i <= 200; i++) {
    var theOption = new Option;
    theOption.text = i;
    theOption.value = i;
    ddl.options[i] = theOption;
}