Answers for "ngfor each angular"

-1

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']);
Posted by: Guest on January-20-2021

Browse Popular Code Answers by Language