I have an array of 4 objects in the response like:
In each object I have a properties array of 8 objects
I am trying to assign for each property value of object to the properties value of other object having the same structure.
I am directly assigning this way and its now working.
$scope.details.tabs = response.data.tabs;
there is a way we can do it using AngularJS forEach loop and assign properties values to other object having same structure. I am new to AngularJS, can anybody help to reach object properties value?