This particular snippet of JS code does not work on IE 11. I get the error SCRIPT1003: Expected ':' and it says it is missing on line that it's in bold.
var $actions = application.service('$actions', [
function() {
let _logout = function() {
$('#logoutForm').submit();
}
return {
**Logout() {**
_logout();
},
};
}]);
Any ideas? Thank you