I have some javascript code that does not run in IE 11. Is there a quick way to check where the incompatibly is other than going through the code line by line to see what commands and statements are supported by that version of Internet Explorer?
Solved the issue by using JSHint (installed as package on Sublime Text 3) with option "esversion" set to 3 (compatibility with ECMAScript 3). This got me 90% of the way there and I did the rest manually.