JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app="myApp" ng-controller="myController">
<ul>
<li ng-repeat="user in users | filter : {'Location' : 'USA', 'Location' : 'Scotland'}"> {{user.Location}}</li>
</ul>
</div>
JavaScript
var data = [
{
Location: ""
},
{
Location: "USA"
},
{
Location: "England"
},
{
Location: "England"
},
{
Location: "Scotland"
}
];
var myApp = angular.module("myApp", []);
myApp.controller("myController", function($scope){
$scope.users = data;
});