Below is the 3 dimensional array returned from the API response which I need to show it up in the UI using angularjs.
"items": [[[12,13,14], [13,14,15]],[[13,14,15],[14,15,16]],[[14,15,16],[15,16,17]]]
For each and every element in the array, I have to bind these element to a ng-model of a textbox.
<input name="item" type="text" ng-model="???" placeholder="Enter a value" />
Thanks in advance