I will be getting this JSON as response from server
var responsefromserver = 
    {
    "Restaurants": [
        {
            "RestrntArea": "Home"
        },
        {
            "RestrntArea": "Office"
        },
        {
            "RestrntArea": "Office"
        }
    ]
};
Could you please let me know , how to eliminate duplicates from the above while looping it in front end ??
This is my jsfiddle
 
     
    