Fix Array indexOf in JavaScript for Internet Explorer Browsers



To fix Array.indexOf() for Internet Explorer web browser, use the following −

jQuery.inArray( value, array [, fromIndex ] )

Add the following,

<!--[if lte IE 10]>

Let’s see the prototype here,

<!--[if lte IE 10]>
<script>
   if (!Array.prototype.indexOf) {
      // add code
   }
</script>
<![endif]-->
Updated on: 2020-06-24T06:37:02+05:30

413 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements