Nandkishor
Nandkishor

Reputation: 73

IE 11 Script1002 Filter syntax error

Hi there I get a error message in ie11 but not in chrome the error is Script1002 Syntax error

My code is as follows

 vm.NoOftroopMemEditReq = (vm.EventAttendees.TicketAttendees.filter(a => a.Attendees.some(Attendee => Attendee.IsEditRequired === true))).length;

Upvotes: 5

Views: 2148

Answers (1)

Shaik Matheen
Shaik Matheen

Reputation: 1307

in IE 11 this symbol => don't work, replace => with ===

 vm.NoOftroopMemEditReq = (vm.EventAttendees.TicketAttendees.filter(function (a) { return a.Attendees.some(Attendee === Attendee.IsEditRequired === true); })).length;

Upvotes: 5

Related Questions