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 6332709
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T18:18:56+00:00 2026-05-24T18:18:56+00:00

I wrote some JavaScript on Chrome and then tried to run it in IE8.

  • 0

I wrote some JavaScript on Chrome and then tried to run it in IE8. The first thing I ran into was the lack of Array.map, Array.filter and all their useful cousins. To get around this, I added some of the shims found here.

This broke all my for ... in ... loops, like this:

>> c = [1];
{...}
>> for(i in c) { console.log(i);}
LOG: 1
LOG: indexOf
LOG: lastIndexOf
LOG: filter

I would want that to iterate over array entries only. Is there a way around this or do I need to go back to writing for(i=0;i<c.length;++i) loops?

  • 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-24T18:18:57+00:00Added an answer on May 24, 2026 at 6:18 pm

    You need to sanitize your loops, using hasOwnProperty the shim adds functionality to the array prototype and you end up looping over the added functions.

    for(i in c){
        if(c.hasOwnProperty(i))
        {
            console.log(i);
        }
    }
    

    References:
    https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/hasOwnProperty

    http://msdn.microsoft.com/en-us/library/328kyd6z(v=vs.94).aspx

    Crockford on for .. in http://javascript.crockford.com/code.html search for “hasOwnProperty”

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

Sidebar

Related Questions

I recently wrote some javascript code that filled a drop down list based on
I want to write some javascript and have it call into the DOM for
I wrote some CSS in my HTML code to create rollover buttons. Then i
I got a JavaScript code I wrote that calls a web service returns some
So, I wrote some JavaScript to grab an xml file from my desktop and
Good Sunday morning! After fiddling around with some JavaScript this weekend, I finally wrote
I am converting some Java code to Javascript to run on node.js, and I
I recently wrote some Javascript code to generate random fake stock data as I
So I wrote a script in PHP that requires JavaScript to run with it.
I want to write a Chrome extension that intercepts some data that a Javascript-based

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.