JSFiddle - React, Tailwind, and code Playground

HTML

<input type='text' name='startTime' id='startTime' value=''>

JavaScript

function myRandom(max, min) {
 return Math.floor(Math.random()*(max-min)) + min;
}
var rand = myRandom(100,300);
$('#startTime').val(rand);