Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3931680
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T23:22:30+00:00 2026-05-19T23:22:30+00:00

I extended Array to support indexOf in IE using this JavaScript function from Mozilla

  • 0

I extended Array to support indexOf in IE using this JavaScript function from Mozilla MDC.

Unfortunately, when using for…in syntax to iterate over the Array, the loop stops on indexOf instead of just numerical indexes.

Can I keep indexOf out of for…in syntax in Internet Explorer (it does in Chrome)? What makes the Array.length property and other Array functions so special that the for…in loop skips over them?

I know that switching to standard for syntax is a solution, but I would prefer a for…in fix.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T23:22:30+00:00Added an answer on May 19, 2026 at 11:22 pm

    Aside from avoiding the for…in notation for arrays, try to apply defensive programming:
    When using the for (... in ...) syntax in ES3 (current browsers), it’s always recommended that you filter it:

    var member;
    for (member in someObject) {
      if (someObject.hasOwnProperty(member)) {
        someObject[member]; // do whatever you want with it
      }
    }
    

    Other code could also enrich some object prototype.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just wonder. I have extended javascript Array object using its prototype as follows: <html>
I realize that adding methods to native JavaScript objects (Object, Function, Array, String, etc)
I used PDO::errorInfo to fetch extended error information. This does return an array which
I have extended Array prototype: if(typeof Array.prototype.filter === 'undefined') Array.prototype.filter = function(fun /*, thisp*/){
I have a object that is extended from arraycollection. This object has to access
How can I create a custom array constructor, which is an extended version of
I extended the functionality of a line object using a class which takes a
This question is extended part of my previous question, Finding number position in string
I am converting from JSON to object and from object to array. It does
I want to create an array which can be extended at any time by

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.