SQL PHP HTML ASP JavaScript articles and free scripts to download
 

Joining two or more arrays by using concat

By using concat function we can create new array by adding two or more arrays. This function concat does not alter any structure of elements used as arguments for creating the new array.

By using concat we can add elements to an existing array.

Let us start with adding or joining two arrays. We have created two arrays , one is our script array and other one is browsers array. We will join these two arrays by using concat function.

Here is the code

var scripts = new Array();
scripts[0] = "PHP";
scripts[1] = "ASP";
scripts[2] = "JavaScript";
scripts[3] = "HTML";

var browsers=new Array();
browsers[0] = "Internet Explorer";
browsers[1] = "FireFox";
browsers[2] = "NetScape";

var both = scripts.concat(browsers);
document.write(both.toString());


The output of above code is here

PHP,ASP,JavaScript,HTML,Internet Explorer,FireFox,NetScape

We can use concat to add elements to an existing array. Here is the code.

var new_one = scripts.concat("ie","ff","ns");
document.write(new_one.toString());


The output of above code is

PHP,ASP,JavaScript,HTML,ie,ff,ns
Further readings
Declaring array in JavaScript
Displaying elements of an array by looping through
join():Displaying elements of an array using join() function
sort():Sorting of elements of an array using function
length:Length property to get the total number of elements in an array
reverse():Reversing the elements of an array
pop():Removeing last element of an array by using pop()
shift():Removeing first element of an array using shift()
push():Adding elements to array using push()
unshift():Adding elements to array using unshift()
splice():Add replace remove elements from an array using splice()
split():Creating array by splitting string variable
toString: To join all elements and create a string
concat: To join two or more arrays to a single array
slice: To return element from an array with starting and ending positions


 
Subscribe
Submit your email address and receive article and product notifications. Your email is safe with us.

Scripts
PHP
JavaScript
JavaScript Tutorials
Array Functions
Popular Tutorials
Drop down list
Timer function
JavaScript Tutorials
String
Array
Date & Time
Form Validation
Event Handling
Math Functions
Loops & structure
JavaScript Forum
Subscribe
Submit your email address and receive article and product notifications. Your email is safe with us.