My 3000 lines of code execute just fine in chrome and Firefox with zero errors reported.
However, in IE11 (where the code MUST run), I get an error saying that the method ‘from’ is not supported at the following line:
var inputsArray = Array.from(document.querySelectorAll('input.input' + b));
How can I resolve this?
The HTML file contains the correct compatibility mode for edge so that’s not the issue.