JavaScript - Delete Data In Multidimensional Array

In this tutorial we will create a Delete Data In Multidimensional Array using JavaScript. This code will use onclick() to call a specific function that can delete a multidimensional array object using delete a built-in JavaScript function that use for deleting an array object by providing the index position of an array. You can apply this script to your code, 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:

First you have to download bootstrap framework, 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 - Delete Data In Multidimensional Array</h3>
  15. <hr style="border-top:1px dotted #ccc;"/>
  16. <div class="col-md-4">
  17. <div class="form-group">
  18. <label>Firstname</label>
  19. <input type="text" id="firstname" class="form-control"/>
  20. </div>
  21. <div class="form-group">
  22. <label>Lastname</label>
  23. <input type="text" id="lastname" class="form-control"/>
  24. </div>
  25. <div class="form-group">
  26. <label>Address</label>
  27. <input type="text" id="address" class="form-control"/>
  28. </div>
  29.  
  30. <center><button type="button" onclick="addEntry()" class="btn btn-primary form-control">Add</button></center>
  31.  
  32. </div>
  33. <div class="col-md-8">
  34. <pre>[<div id="result"></div>]</pre>
  35. <table id='row'>
  36.  
  37. </table>
  38. </div>
  39. </div>
  40. </body>
  41. <script src="js/script.js"></script>
  42. </html>

Creating the Script

This code contains the script of the application. This code will delete JSON object 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 data = [
  2. {firstname: "John", lastname: "Smith", address: "New York"}
  3. ];
  4.  
  5. displayResult(data);
  6. rowDisplay(data);
  7.  
  8. function displayResult(data){
  9. var html = "" ;
  10.  
  11. for(var i in data){
  12. html += "&nbsp;&nbsp;&nbsp;{firstname:"+ "'"+data[i].firstname+"'"+", "+"lastname:'"+data[i].lastname+"'"+", "+"address:'"+data[i].address+"'"+"}<br />" ;
  13. }
  14.  
  15. document.getElementById("result").innerHTML = html;
  16. firstname.value = "";
  17. lastname.value = "";
  18. address.value = "";
  19. }
  20.  
  21. function rowDisplay(data){
  22.  
  23. var table = "" ;
  24. var j=0;
  25. for(var i in data){
  26. table += "<tr>";
  27. table += "<td> Row index: " + j + "&nbsp;&nbsp;&nbsp;</td>"
  28. + "<td><button class='btn btn-danger btn-sm' onclick='deleteData("+i+")'>Delete</button></td>";
  29. table += "</tr>";
  30. j++;
  31. }
  32.  
  33. document.getElementById("row").innerHTML = table;
  34. }
  35.  
  36. function deleteData(index){
  37. delete data[index];
  38. alert("Deleted a row!");
  39. rowDisplay(data);
  40. displayResult(data);
  41. }
  42.  
  43.  
  44. function addEntry(){
  45. var firstname = document.getElementById("firstname");
  46. var lastname = document.getElementById("lastname");
  47. var address = document.getElementById("address");
  48.  
  49. if(firstname.value == "" || lastname.value == "" || address.value == ""){
  50. alert("Please complete the required field first!");
  51. }else{
  52. var member = {
  53. 'firstname': firstname.value,
  54. 'lastname': lastname.value,
  55. 'address': address.value,
  56. };
  57.  
  58. data.push(member);
  59.  
  60.  
  61. displayResult(data);
  62. rowDisplay(data);
  63. }
  64. }
There you have it we successfully created a Delete Data In Multidimensional Array 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