Answers for "angular loop through array"

-2

angular for loop

let array = [1,2,3];
for (let i = 0; i < array.length; i++) {
  console.log(array[i]);
}
Posted by: Guest on March-05-2020
1

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
Posted by: Guest on March-14-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language