AngularJS Remove Duplicates Object from Array Example
Today, i will give you example of how to remove duplicate array or object from array using js forEach. we can simply filter remove duplicates from array in angular js. you use this code for removing same entries array in json object in angular 2, angular 4, angular 6, angular 7.
in this example, we will create simple angular js json array with some duplicate array. then we will create javascript function that will remove duplicate array from our json object array. so just use bellow example and do it.
Example:
<!doctype html>
<html>
<head>
<title>Angularjs remove duplicates object from objects array - ItSolutionStuff.com</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
</head>
<body ng-app='myapp'>
<h1>Angularjs remove duplicates object from objects array - ItSolutionStuff.com</h1>
<div ng-controller="myCtrl">
</div>
</body>
<script type="text/javascript">
var app = angular.module('myapp', []);
app.controller('myCtrl', function ($scope, $location) {
var myArray = [
{ "id" : "1", "firstName" : "Hardik", "lastName" : "Savani" },
{ "id" : "2", "firstName" : "Vimal", "lastName" : "Kashiyani" },
{ "id" : "3", "firstName" : "Harshad", "lastName" : "Pathak" },
{ "id" : "1", "firstName" : "Hardik", "lastName" : "Savani" },
{ "id" : "5", "firstName" : "Harsukh", "lastName" : "Makawana" }
];
console.log(removeDumplicateValue(myArray));
});
function removeDumplicateValue(myArray){
var newArray = [];
angular.forEach(myArray, function(value, key) {
var exists = false;
angular.forEach(newArray, function(val2, key) {
if(angular.equals(value.id, val2.id)){ exists = true };
});
if(exists == false && value.id != "") { newArray.push(value); }
});
return newArray;
}
</script>
</html>
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- AngularJS Check Checkbox is Checked or Not Example
- PHP AngularJS Add Remove Input Fields Dynamically Example
- How to Copy to Clipboard without Flash in AngularJS?
- AngularJS Scroll to a Specific Element using Anchorscroll
- AngularJS Convert Comma Separated String to Array Example
- AngularJS Nl2br Filter for Textarea Content Example
- AngularJS Display Default Image If Original Does Not Exists Example
- AngularJS Update Bind Ng-model Input Value from JQuery Example
- How to Call AngularJS Controller Function in JQuery?
- How to Hide Div After Some Time in AngularJS?
- How to Call Function on Page Load in AngularJS?
- AngularJS - How to Limit String Length using Filter?
- AngularJS - How to Capitalize the First Letter of Word Example
- How to Remove HTML Tags from String in AngularJS?