I have 2826 objects. In that objects for example I want to take values like "name" then check that value is presented or not in that object. If presented means I want to take count of value("name") using JavaScript with out using for loop or each function.
In angular I am using:
var getunique_count = $filter('filter')(scope.payloadRowCollection,key);
But with JavaScript I don't know. So please any one help me to solve this issue or give any example.