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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T21:14:35+00:00 2026-06-08T21:14:35+00:00

I know that in JavaScript sometimes the system creates a fake array, meaning it

  • 0

I know that in JavaScript sometimes the system creates a fake array, meaning it is actually an object and not an instance of Array, but still has part of the functionality of an array. For example, the arguments variable you get inside functions is a fake array created by the system. In this case I know that to turn it into a real array you can do:

var realArray = Array.prototype.slice.call(fakeArray);

But what if the fake array wasn’t created by the system, what if fakeArray was simply:

var fakeArray = { "0": "some value", "1": "another value" };

In this case, and I tested it, using the method above will result in an empty array. The thing I want to be able to turn a fake array like in the example I gave (created by me and not by the system) into a real array. And before you tell me to simply make the fake array a real array from the beginning, you should know that I get the fake array from a resource which I have no control of.

So, how do I turn a fake array not created by the system into a real array?

  • 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-06-08T21:14:37+00:00Added an answer on June 8, 2026 at 9:14 pm

    Your example will work if your “fake array” is given a .length property appropriately set.

    This will not work in some older versions of Internet Explorer.


    “one of the purposes of turning the fake array into a real array is to get its length”

    If you want the number of properties in the object, use Object.keys…

    var len = Object.keys(fakeArray).length;
    

    To shim Object.keys for older browsers, you can do this…

    if (!Object.keys) {
        Object.keys = function(o) {
            var keys = [];
            for (var k in o)
                if (o.hasOwnProperty(k))
                    keys.push(k)
            return keys;
        };
    }
    

    If the fake Array is “sparse”, you’ll need a solution like @Rocket shows.

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

Sidebar

Related Questions

I know that javascript, for example supports functions inside of functions, like so: function
I know that javascript doesn't have pointers in terms of a variable referring to
I know that in Javascript document.location.href = #my_id tells the browser to display the
I know that I can run an external Javascript file from within HTML with
I know that google's v8 compiles javascript into native machine (binary if I understand
I know that Visual Studio 2008 support JavaScript intellisense as I am using it
I know that you cannot delete a cookie set by another server in javascript.
Do you know if it is possible to make sure that a JavaScript script
Is there a set of things that every JavaScript programmer should know to be
Do you know a JavaScript library that implements a generic Iterator class for collections

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.