foreach in angular code example

Example 1: typescript foreach

let num = [7, 8, 9];
num.forEach(function (value) {
  console.log(value);
});

Example 2: angular 7 for loop index ts

for (let i = 0; i < 3; i++) {
  console.log ("Block statement execution no." + i);
}

Example 3: angular for loop

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

Example 4: angular for each

var values = {name: 'misko', gender: 'male'};
var log = [];
angular.forEach(values, function(value, key) {
  this.push(key + ': ' + value);
}, log);
expect(log).toEqual(['name: misko', 'gender: male']);

Tags:

Misc Example