remove duplicate elements based on callback js code example
Example: callback without duplicates javascript
function myFunction(myArray, callBack){
var unique = myArray.filter(function(item, pos) {
//validates whether the first occurrence of current item in array
// equals the current position of the item (only return those items)
return myArray.indexOf(item) == pos;
});
//wrap your result and pass to callBack function
callBack(unique);
}