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

  • Home
  • SEARCH
  • 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 5981495
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:57:06+00:00 2026-05-22T21:57:06+00:00

I have created some arrays, example yy1, yy2, yy3, etc., and I am able

  • 0

I have created some arrays, example yy1, yy2, yy3, etc., and I am able to display the elements of an array using

for (j=0; j < count; j++){
    alert(yy1[j]);
}

and other arrays by changing number, that is yy2, yy3…

How to display the array in a loop, like

for (i=0; i< lengthL; i++){ 
    for (j=0; j < count; j++){
        alert(yyi[j]);
    }
}

That is how to join yy with i.

Please let me know if I am not clear, thanks in advance.

  • 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-22T21:57:07+00:00Added an answer on May 22, 2026 at 9:57 pm

    What you are looking for is eval (Warning, Eval is evil!). You can use it to do what you are trying to do but you should rather change the way the data is stored to avoid it. It is very easy in your case (look at other answer for guidance).

    var yy1 = [11, 12, 13];
    var yy2 = [21, 22, 23, 24, 25];
    var yy3 = [31, 32, 33, 34];
    
    for (i = 1 ; i <= 3 ; i++)
    {
        var arr = eval("yy" + i);
    
        for (j = 0 ; j < arr.length ; j++)
        {
            console.log(arr[j]);
        }
    }
    

    Demo

    You should use Firefox and Firebug so that you can use console.log instead of alert.

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

Sidebar

Related Questions

I have created some rounded navigation tabs using CSS and am having trouble when
I have created some simple app in Java, and 'deployed' it using Java Web
I have created some functional categories that I use to show/hide markup elements. However,
I'm using SQL*Plus 9.2 on Oracle 10g enterprise. I have created some scripts that
I'm a beginner i have some problem with NSArray. I created an array and
I'm inserting some items into array with randomly created indexes, for example like this:
I have an array as the following: function example() { /* some stuff here
I have some Javascript code that creates 2 arrays: One for Product Category and
I have created some extra functionality on my Linq-to-SQL classes to make things easier
I have created some python code which creates an object in a loop, and

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.