I'm confused about what I'm seeing online. If I want to use Javascript promises instead of callbacks do I need to be concerned that browsers don't support it?
Thanks.
I'm confused about what I'm seeing online. If I want to use Javascript promises instead of callbacks do I need to be concerned that browsers don't support it?
Thanks.
As you can see in can i use promises, the promises are not supported on IE and some older browsers.
You have many possibilities to determine if a promise is supported by the browser.
You can also read how do you use es6 promises today on frontend.