I am using this d3 Javascript library: https://bl.ocks.org/d3noob/43a860bc0024792f8803bba8ca0d5ecd
When i use Google Chrome it works fine, but when I use Internet Explorer 11. I get an error in:
path = `M ${s.y} ${s.x}
C ${(s.y + d.y) / 2} ${s.x},
${(s.y + d.y) / 2} ${d.x},
${d.y} ${d.x}`
The problem is the sign `. I know that Internet Explorer and Chrome "read" code differently, but how can i modify my code to work in Internet Explorer or in both?