Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Concern regarding arrow function with internet explorer

It is true that most browsers support the arrow function but one of the main browsers that many people use on a daily basis is internet explorer. Using it would be a mistake at the moment until it gets supported. reference: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions#Browser_compatibility

teaching video: https://teamtreehouse.com/library/concise-arrow-function-syntax-2

Please give me your opinion regarding this concern

1 Answer

Hi Sulaiman, you are right. IE runs on transpiled code. You need to load a polyfill in order for you to work arrow functions on IE or any other non-supported browsers.