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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T02:57:57+00:00 2026-05-19T02:57:57+00:00

Consider, I have this object: var ob = { page1.html : {…}, page2.html :

  • 0

Consider, I have this object:

var ob = {
  "page1.html" : {...},
  "page2.html" : {...},
  "page3.html" : {...}
}

I am unable to change this to an array, I don’t have access to that, what I’d like to know is if it is safe to access the object properties by index, so:

var obVal = ob[0]; // reliably returns "page1.html"'s value every time

I know that a for each loop shouldn’t be used in this situation because the values are hashed or something? But reference by index might be ok?

  • 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-19T02:57:58+00:00Added an answer on May 19, 2026 at 2:57 am

    No, ob[0] won’t even work – it will give undefined. In fact if your object was:

    var ob = {
      "0": "blah",
      "page1.html" : {...},
      "page2.html" : {...},
      "page3.html" : {...}
    }
    

    ob[0] will give you "blah".

    A for-each loop is the right tool for this situation, but you should just check that each index in the loop actually belongs to the object, and not to a parent:

    for (var i in ob) { // i will be "page1.html", "page2.html", etc...
        if (!ob.hasOwnProperty(i)) continue;
        // Do something with ob[i]
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Consider this scenario. I have an object, lets call it.... Foo. Foo raises a
I know the question sounds silly, but consider this: I have an array of
Consider this page @ http://www.bloodbone.ws/screwed.html I need to be able to have the a.grow
I have object literal what I consider as base object: var obj = {
Consider I have an anchor which looks like this <div class=res> <a href=~/Resumes/Resumes1271354404687.docx> ~/Resumes/Resumes1271354404687.docx
Before Consider to have a class and a global function: This is, for example,
This may seem a very silly question. Consider this: I have a simple Boolean
Please Consider this scenario: We have a base class called clsMain : class clsMain
Consider this scenario. I have my own website, that I use as my identifier,
Consider a grocery store scenario (I'm making this up) where you have FACT records

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.