$scope.appdata = [{name: '', position: '', email: ''}];
This is the array which I created in angular controller.
Then I inserted some values in to array by using push method:
$scope.appdata.push({name: 'jenson raby', position: '2', email: 'jensonraby@gmail.com'});
This is the array values after insertion:
$$hashKey:"00F",name:"jenson raby",position:"2",email:"jensonraby@gmail.com",
Here an extra $$hashKey
has been added to the array after insertion, but I need to remove this from array.