Question from the AngularJS test

What is the output of the following code? ``` var a = 1; var b = 2; var c = a + b; console.log(c); ```

Easy

Given the following filter:

app
   .filter('customFilter', function () {
      var out;
      
      return function (list) {
         out = [];
         angular.forEach(list, function (item) {
            if(item.data > 100) {
               out.push(item);
            }
         });
      };
   });

And given:

$scope.list = [{
   name : 'a',
   data : 110,
   processed: false
}, {
   name : 'b',
   data : 99,
   processed: true
}, {
   name : 'c',
   data : 200,
   processed: true
}];

what will be the result of

<span ng-repeat="item in list | customFilter | filter: {'processed': true'}">{{item.name}}</span>
Author: Mathieu RobinStatus: PublishedQuestion passed 71 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!