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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T04:22:31+00:00 2026-05-23T04:22:31+00:00

I usually script/program using python but have recently begun programming with JavaScript and have

  • 0

I usually script/program using python but have recently begun programming with JavaScript and have run into some problems while working with arrays.

In python, when I create an array and use for x in y I get this:

myarray = [5,4,3,2,1]
for x in myarray:
    print x

and I get the expected output of:

5
4
3
..n

But my problem is that when using Javascript I get a different and completely unexpected (to me) result:

var world = [5,4,3,2,1]
for (var num in world) {
    alert(num);
}

and I get the result:

0
1
2
..n

How can I get JavaScript to output num as the value in the array like python and why is this happening?

  • 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-23T04:22:32+00:00Added an answer on May 23, 2026 at 4:22 am

    JavaScript and Python are different, and you do things in different ways between them.

    In JavaScript, you really should (almost) always iterate over an array with a numeric index:

    for (var i = 0; i < array.length; ++i)
      alert(array[i]);
    

    The “for … in” construct in JavaScript gives you the keys of the object, not the values. It’s tricky to use on an array because it operates on the array as an object, treating it no differently than any other sort of object. Thus, if the array object has additional properties — which is completely “legal” and not uncommon — your loop will pick those up in addition to the indexes of the “normal” array contents.

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

Sidebar

Related Questions

I have a Python script and a C program and I need to pass
So I have an external script that will sometimes input something into a sql
Do you guys have some script or GUI tool that would give you nice
I usually don't use onclick, but was gonna do some debug coding for an
I usually create my SQL tables and stored procedures by writing a script inside
Usually Flash and Flex applications are embedded on in HTML using either a combination
Usually when I build a site, I put all the CSS into one file,
Usually, we install VS.NET on our production server, to solve problems easily with our
Usually, when using Windows Authentication, the software (eg Internet Explorer) tries to use Windows
Usually when defining a DAO, you would have a setter for the datasource on

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.