var myList = data.filter((v, i, a) => a.indexOf(v) === i);
This expression "=>" is not workingin IE. Can anyone please tell the alternative for this expression
var myList = data.filter((v, i, a) => a.indexOf(v) === i);
This expression "=>" is not workingin IE. Can anyone please tell the alternative for this expression