I am trying to run a Javascript code in Internet Explorer 11.
It not working with arrow functions or ``, however I need these sintax because I would like to work more comfortable and do not have some issues with this.
I trying with Babel at top and in the end of the page, but I always have the same error in IE11:
Character not valid
This error is because ${}
It is the library that I am using:
<script src='https://unpkg.com/babel-standalone@6.26.0/babel.js'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/7.10.4/polyfill.min.js" integrity="sha512-pgx+g4+yrNG/DhUEosN7ontsnk2WayfSuK1Fmy2GrqNi8ktUpIlTpKj80dCLyoEELA6c6m5otWP9RM/lq5UTQg==" crossorigin="anonymous"></script>
What I am doing bad?