JavaScript - Simple Rearrange Array Position

In this tutorial we will create a Simple Rearrange Array Position using JavaScript. This code will rearrange the array index position in a different position when clicked. The process use JavaScript for loop to compress an array and rearrange the index in order to display a different array index position. You can apply this script to your system that use image gallery, this is a user-friendly program feel free to modify it. We will use JavaScript to add some new feature to the website interface by actually written into an HTML page. It is what gives your page a different interactive elements and animation that engage a user.

Getting Started:

This is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6.         </head>
  7.         <nav class="navbar navbar-default">
  8.                 <div class="container-fluid">
  9.                         <a class="navbar-brand">Sourcecodester</a>
  10.                 </div>
  11.         </nav>
  12.         <div class="col-md-3"></div>
  13.         <div class="col-md-6 well">
  14.                 <h3 class="text-primary">JavaScript - Simple Rearrange Array Position</h3>
  15.                 <hr style="border-top:1px dotted #ccc;"/>
  16.                 <div class="col-md-3"></div>
  17.                 <div class="col-md-6">
  18.                         <div id="result" style="border:1px solid #ccc; padding:20px;"></div>
  19.                         <br />
  20.                         <center><button class="btn btn-primary" type="button" onclick="reorder()">Rearrange Array</button></center>
  21.                 </div>
  22.         </div>
  23. <script src="js/script.js"></script>   
  24. </body>
  25. </html>

Creating the Script

This code contains the script of the application. This code will rearrange the array index position when the button is clicked. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js inside the js directory
  1. display();
  2.  
  3. function arrayRear(arr) {
  4.     for (var i = 0, rear = [], randomIndex = 0; i < arr.length; i++) {
  5.         randomIndex = Math.floor(Math.random() *  arr.length);
  6.         while (rear.indexOf(arr[randomIndex]) !== -1) {
  7.             randomIndex = Math.floor(Math.random() *  arr.length);
  8.         }
  9.        rear.push(arr[randomIndex]);
  10.     }
  11.    
  12.         return rear;
  13. }
  14.  
  15. function display(){
  16.         var arr = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
  17.         var html = "";
  18.         for(var i=0; i<arr.length; i++){
  19.                 html += "<div width='200' height='200' style='margin:10px; font-size:50px; float:left;'>"+arr[i]+"</div>";
  20.         }
  21.         html += "<br style='clear:both;'/>";
  22.        
  23.         document.getElementById('result').innerHTML = html;
  24. }
  25.  
  26. function reorder(){
  27.         var arr = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
  28.         var html = "";
  29.         arrayRear(arr).forEach(function(item){
  30.                 html += "<div width='200' height='200' style='margin:10px; font-size:50px; float:left;'>"+item+"</div>";
  31.         })
  32.         html += "<br style='clear:both;'/>";
  33.        
  34.         document.getElementById('result').innerHTML = html;
  35. }
There you have it we successfully created a Simple Rearrange Array Position using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment