Let's say I have some html that looks like this:
<input type="text" name="myInputs[]">
<br>
<input type="text" name="myInputs[]">
<br>
<input type="text" name="myInputs[]">
<br>
I want to use the length of the myInputs array inside some JavaScript code. How do I extract the length of this array? myInputs.length doesn't seem to work
myform.myInputs.length?theform['myInputs[]'].length