SyntaxFix
Write A Post
Hire A Developer
Questions
Here is filter with Underscore library might help you, we remove item with name "ted"
filter
$scope.items = _.filter($scope.items, function(item) { return !(item.name == 'ted'); });