SQL PHP HTML ASP JavaScript articles and free scripts to download If you are facing any problem in viewing this page, please tell us
 

Changing the order of elements of an array by reverse() function


We can reverse the order of the element by using the reverse method. Here the first element will became last method and last element became first and other elements will also change their positions.

We have created an array of scripts and then displayed the elements. Then we have applied the command scripts.reverse(); to our scripts array and displayed again all the elements to see the result of reverse() function.

Here is the code to reverse the array elements.




<script type="text/javascript">
var scripts = new Array();
scripts[0] = "PHP";
scripts[1] = "ASP";
scripts[2] = "JavaScript";
scripts[3] = "HTML";
document.write(scripts.join(" <br> "));

document.write("<br>----<br>");
scripts.reverse();
document.write(scripts.join(" <br> "));

</script>



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
Two Dimensional Array: Adding and displaying elements


Sections
PHP
JavaScript
ASP
HTML
SQL
Photoshop
Articles SEO
Array Functions
Subscribe
Submit your email address and receive article and product notifications. Your email is safe with us.