I want to push each blank record in $scope.planlist=[]
and iterate over in html to show its template but when i fill record each record shows identical behaviour means each property cant bind with index may be means properties cant uniquely defined
$scope.listOfPlans=[];
$scope.planrecord={name:"",age:""};
pushing like this
$scope.listOfPlans.push(planrecord);
I want to fill each record in template so that each property can saved in unique list or object in respective index of array