Having just finished a small form, I realized that my current implementation of findIndex is not compatible with IE.
Let's take a look at an example of the problem:
var people = [
{name:"Mike", age:"25"},
{name:"Bill", age:"35"},
{name:"Terry", age:"44"}
];
console.log(people.findIndex(x => x.name=="Bill" ));
Is there a quick and efficient solution to address this compatibility issue in Internet Explorer?