Gojs latest version in IE 11

i developed my go js app and tested it in chrome now i want to make it work in ie 11
is there any changes in code i need to do to make it work it refreshes my page when i try to load it in ie11

You have to make sure your code and HTML and CSS work in IE11. For JavaScript:

  • You cannot use let or const.
  • You cannot use arrow functions (=>).
  • You cannot use template literals (backquoted string expressions with ```).
  • You must be careful about using comma (,) as a separator, not terminating a list of Object properties or Array items with a comma.
  • You cannot use other ES6 or later language features.

There are probably other things I’m forgetting at this moment, but those are the most common reasons.