My current issue involves using the 'find' method within a scope. While it works perfectly fine in Chrome, there seems to be compatibility issues with Internet Explorer 11. How can I resolve this and make it work smoothly on IE 11?
$scope.NameList = [];
$scope.addRow = function () {
if ($scope.NameList.find(findName)) {
$scope.error = "Already in the list";
}
}