var dataList = list with 10 rows and 4 columns;
dataList.then(function(data)){
$scope.mylist = data.data;
}
For example, my list contains a single row like
name:"rajesh";
id:10009;
branch:"dotnet";etc...
I would like to change all instances of "dotnet" to "angular" in the branch column for every row and save the updated object.
So, I am aiming for this output:
name:"rajesh";//1st row
id:100009;
branch:"angular";
name:"sai";//2nd row
id:1004;
branch:"angular"; and so on
Please provide guidance as I am new to AngularJS