JavaScript - Simple Array Merge

In this tutorial we will create a Simple Array Merge using JavaScript. This code will immediately combine the two array when the user click the merge button. The code use onclick() function in order to launch a method that merge the two array by using the concat() built in javascript function. You can apply this script to your code to make your transaction faster, it 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" href="https://sourcecodester.com">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 Array Merge</h3>
  15.                 <hr style="botder-top:1px dotted #ccc;" />
  16.                 <div class="col-md-6">
  17.                         <h3>Member 1</h3>
  18.                         <pre id="result1"></pre>
  19.                 </div>
  20.                 <div class="col-md-6">
  21.                         <h3>Member 2</h3>
  22.                         <pre id="result2"></pre>
  23.                 </div>
  24.                 <br style="clear:both;"/>
  25.                 <center><button class="btn btn-primary" id="merge">Merge</button></center>
  26.                 <br />
  27.                 <div class="col-md-3"></div>
  28.                 <div class="col-md-6">
  29.                         <table class="table table-bordered">
  30.                                 <thead>
  31.                                         <tr>
  32.                                                 <th>Name</th>
  33.                                         </tr>
  34.                                 </thead>
  35.                                 <tbody id="display"></tbody>
  36.                         </table>
  37.                 </div>
  38.         </div>
  39. <script src="js/script.js"></script>   
  40. </body>
  41. </html>

Creating the Script

This code contains the script of the application. This code will merge the two array 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. var member1 = ["Steve Roger", "Natasha Romanof", "Bruce Banner", "Clint Barton", "Tony Stark", "Thor Odinson"];
  2. var member2 = ["Sam Wilson", "Bucky Barnes", "Doctor Strange", "Peter Parker", "Scott Lang"];
  3.  
  4. initiateArray(member1, member2);       
  5.  
  6. function initiateArray(array1, array2){
  7.         document.getElementById('result1').innerHTML=array1;
  8.         document.getElementById('result2').innerHTML=array2;
  9. }
  10.  
  11. document.getElementById('merge').addEventListener('click', mergeArray.bind(this, member1, member2));
  12.  
  13. function mergeArray(array1, array2){
  14.         var merge = array1.concat(array2);
  15.         var html ="";
  16.         for(var i=0; i<merge.length; i++){
  17.                 html+="<tr>";
  18.                 html+="<td>"+merge[i]+"</td>";
  19.                 html+="</tr>";
  20.         }
  21.        
  22.         document.getElementById('display').innerHTML=html;
  23. }
There you have it we successfully created a Simple Array Merge 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