I have an array of objects and I am using an ng-repeat to iterate over them, which is easy. The array looks something like this:
$scope.steps =
In fact, your data is not well design. You'd better use something like :
$scope.steps = [
{stepName: "companyName", isComplete: true},
{stepName: "businessType", isComplete: true},
{stepName: "physicalAddress", isComplete: true}
];
Then it is easy to do what you want :
Step {{step.stepName}} status : {{step.isComplet}}
Example: http://jsfiddle.net/rX7ba/