JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app="modeleach">
<div ng-controller="controllereach">
For each array value {{temp}}
</div>
</div>
JavaScript
var app = angular.module("modeleach",[]);
app.controller("controllereach",['$scope',function($scope){
var techArray = {name:"rajesh", state:"tamilnadu", country:"india" };
var val = [];
angular.forEach(techArray, function(value, key) {
this.push(value);
}, val);
console.log("List of item ==> "+ val);
$scope.temp = val;
}]);