Javascript - Remove Element From An Array

In this tutorial we will create a Remove Element From An Array using Javascript. JavaScript is a scripting or programming language that allows you to implement complex things on web pages. It can renders web pages in an interactive and dynamic fashion. It is widely used in designing a stunning website. This code can be used as your converter to your mathematical problem. So Let's do the coding...

Before we started:

And this is the link for the bootstrap that has been used for the layout of the application https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. This code will render application and display the form. 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 - Remove Element From An Array</h3>
  15.                 <hr style="border-top:1px dotted #ccc;"/>
  16.                 <table class="table table-bordered">
  17.                         <thead>
  18.                                 <tr>
  19.                                         <th>Name</th>
  20.                                         <th>Action</th>
  21.                                 </tr>
  22.                         </thead>
  23.                         <tbody id="result"></tbody>
  24.                 </table>
  25.         </div>
  26. </body>
  27. <script src="js/script.js"></script>
  28. </html>

Creating the Script

This code contains the script of the application. This code will create an data of arrays, then display it to the HTML table and can remove element of an array. To do this just copy write the code as shown below inside the text editor and save it as script.js.
  1. var members = ["luffy", "Naruto", "Ichigo", "Sasuke", "Natsu", "Toriko", "Gon", "Madara", "Kaneki"];
  2.        
  3. displayData();
  4.  
  5. function Remove(index){
  6.         alert("You have remove " + members[index]);
  7.         members.splice(index, 1);
  8.         displayData();
  9. }
  10.  
  11. function displayData(){
  12.         var table = "" ;
  13.        
  14.         for(var i=0; i < members.length; i++){
  15.                 table += "<tr>";
  16.                 table += "<td>" + members[i] +"</td>"
  17.                                 + "<td><button class='btn btn-danger' onclick='Remove("+i+")'>Remove</button></td>";
  18.                 table += "</tr>";
  19.        
  20.         }
  21.        
  22.         document.getElementById("result").innerHTML = table;
  23. }
There you have it we successfully created a Remove Element From An Array using javascript. I hope that this very 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