I have my json Array input like this :-
var temp = [{first: 569, second: "789", third: "458"}, {first: value1, 476: "147", third: "369"}, {first: 100, second: "200", third: "300"}, {first: 100, second: "200", third: "300"}, {first: 100, second: "200", third: "300"}];
I want to remove duplicates from this and need an output like :
var temp = [{first: 569, second: "789", third: "458"}, {first: value1, 476: "147", third: "369"}, {first: 100, second: "200", third: "300"}];
How can i achieve this ?