You can use a filter.
var myArray = [1, 2, 3];
var oneAndThree = _.filter(myArray, function(x) { return x !== 2; });
console.log(allButThisOne);
Edited: for your specific code use this:
friends = _.filter(friends, function (f) { return f.friend_id !== 14; });
source
share