Here i like to explain my problem clearly.
$http.get('arealist.json').success(function(response){
angular.forEach(response, function(data){
$scope.arealist = data.area_name;
console.log($scope.arealist);
});
});
Using the above code am getting area_name from arealist.json.
and it looks like below image in console.

but i need the store above data in a array and it look like below
$scope.arealist = [
"Avadi",
"Poonamallee",
"Padi",
"Ambattur Industrial Estat",
"Annanagar",
"Arumbakkam",
"Kodambakkam",
"Nandanam"
]
How can i do this ?