You may the following error message in browser console while using Internet Explorer 11.
[Object doesn't support property or method 'startsWith']
This is caused by the use of the JavaScript method 'startsWith' being used in the Aura framework, which is not supported in IE11 any longer:
String.prototype.startsWith()
To workaround this, you could either use a different browser or implement a polyfill if appropriate.
if (!String.prototype.startsWith) {
String.prototype.startsWith = function(searchString, position){
return this.substr(position || 0, searchString.length) === searchString;
};
}
There is also a more robust polyfill available on GitHub here, which can be added as a static resource and added as a dependency where needed.000381505

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.