I've just completed a small form and found out that how I'm using findIndex doesn't work with IE.
Here is an example of the issue.
var people = [
  {name:"Mike", age:"25"},
  {name:"Bill", age:"35"},
  {name:"Terry", age:"44"}
];
console.log(people.findIndex(x => x.name=="Bill" ));
What would be the fastest way to fix this issue for IE?
 
     
    