Open In App

How to delete an item or object from the array using ng-click ?

The task is to delete the item from the list when the button is clicked. This all should be done by using ng-click. This is done by using the splice() method. The syntax for the method is given below.

Syntax for splice() function:



array.splice(indexno, noofitems(n), item-1, item-2, ..., item-n)

Example for splice() function:




const topics = ['Array', 'String', 'Vector'];
let removed=topics.splice(1, 1);

Output:



['Array', 'Vector']

The keywords in syntax are explained here:

Example: Let us focus on example more. Here we will try to prove the delete operation via example. Here student names are given who have an account on GeeksForGeeks. We will try to delete one of the names from the array of student_names.




<!DOCTYPE html>
  <html>
     <script src=
     </script>
  
<body style = "text-align:center;">  
        
    <h1 style = "color:green;" >  
        GeeksForGeeks  
    </h1>  
<script>
  var app = angular.module("studentNames", []); 
</script>
  
<div ng-app="studentNames"  
    ng-init="names= ['Madhavi', 'Shivay', 'Priya']">
  <ul>
    <li ng-repeat="x in names track by $index">{{x}}
      <span ng-click="names.splice($index, 1)">
      <strong>x</strong</span>
    </li>
  </ul>
  <input ng-model="addItem">
  <button ng-click="names.push(addItem)">Add</button>
</div>
  
<p>Click the small x given in front  of
 name to remove an item from the name list.</p>
  
</body>
</html>

Output:
Before Click:

After click:


Article Tags :