Logo 
Search:

Javascript Articles

Submit Article
Home » Articles » Javascript » Programming BasicsRSS Feeds

Array

Posted By: Easy Tutor     Category: Javascript     Views: 3675

This article explains you about how to use array in javascript. You will also find syntax and example for using array in javascript

Syntax for Array in Javascript

Array is logical grouping of set of data.

Declaration of Array
//Declare One-Dimensional Array//Array Size is of 10var ArrayObj = new Array([ArrayLenght])

//Example of One-Dimensional Arrayvar objArray = new Array(10);


//Declaration of Multi-Dimensional Array//Array Size is of 10,10var ArrayObj = new Array([ArrayLenght],[ArrayLenght])

//Example of Multi-Dimensional Arrayvar objArray = new Array(10,5);


Following Example will show how to use one dimensional array declaration
function OneDimensionArray() {
            //Declare One-Dimensional Array//Array Size is of 10var objArray = new Array(10);

            //Looping through Array and Assign Valuefor (i = 0; i < 10; i++) {
                objArray[i] = i;
            }

            //Displaying value of Arrayfor (i = 0; i < 10; i++) {
                alert("Value of objArray[" + i + "]: " + objArray[i]);
            }
        }


Following Example will display how to use Two-Dimensional Array
function TwoDimensionArray() {
            //Declare Two-Dimensional Array//Array Size is of 10var objArray = new Array(5,10);

            //Looping through Array and Assign Valuefor (i = 0; i < 10; i++) {
                objArray[i] = i;
            }

            //Displaying value of Arrayfor (i = 0; i < 5; i++) {
                for (j = 0; j < 10; j++) {
                    alert("Value of objArray[" + i + ", " + j +"]: " + objArray[i,j]);
                }
            }
        }

Example for Array in Javascript

Following Example will display output of Two-Dimensional Array

Please click on Test Button to Test the functionality.





  
Share: 

 
 

Didn't find what you were looking for? Find more on Array Or get search suggestion and latest updates.

Easy Tutor
Easy Tutor author of Array is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

Related Articles and Code:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!