angular loop through string array code example

Example 1: angular for loop

let array = [1,2,3];
for (let i = 0; i < array.length; i++) {
  console.log(array[i]);
}

Example 2: angular loop through array

$scope.content = {};
$scope.content.codehttp = [200, 200, 200, 201];

angular.forEach($scope.content.codehttp, function(value, key) {
  if (value != 200) {
    $scope.flag_a = 'bad';
  }
})//this is awsome

Example 3: angular for loop

let array = [1,2,3];
array.forEach(function (value) {
  console.log(value);
});

Tags:

Html Example