I have a javascript function to populate dropdowns for individual table rows like:
$scope.possibleOptions = getUniqueValues($scope.yypeOptions, \'yypeOption\
If you are targeting IE11, since it does not support ES6 features like "=>", you have 2 options:
1) include a polyfill like babeljs so that the ES6 code works in IE11
OR
2) replace your ES6 code with equivalent ES5 code