Iam new to angular framework. when i want to iterate json object in angular, i used javascript foreach
and for..in
loops.
Later i came to know that angular itself has a angular.forEach
loop to iterate objects.
How can i compare performance of angular.forEach
with javascript for..in
and foreach
loops??
Why we should use angular.forEach
instead of javascript foreach
and for..in
??
Please give me some examples and reasons to use it, which shows the performance.
Thanks :)
forEach is almost the same as for or for..of , only slower. There's not much performance difference between the two loops, and you can use whatever better fit's the algorithm. Unlike in AssemblyScript, micro-optimizations of the for loop don't make sense for arrays in JavaScript.
Differences between forEach() and map() methods:The forEach() method does not create a new array based on the given array. The map() method creates an entirely new array. The forEach() method returns “undefined“. The map() method returns the newly created array according to the provided callback function.
each differs for the arguments passed to the callback. If you use _. forEach , the first argument passed to the callback is the value, not the key. So if you don't bother at all about the key you should use _.
Angular forEach - Invokes the iterator function once for each item in obj collection, which can be either an object or an array.
var values = {name: 'misko', gender: 'male'}; angular.forEach(values, function(value, key) { console.log(key + ': ' + value); }); // Output: // "name: misko" // "gender: male"
for..in - iterates over the enumerable properties
of an object, in arbitrary order. For each distinct property, statements can be executed.
var obj = {a:1, b:2, c:3}; for (var prop in obj) { console.log("obj." + prop + " = " + obj[prop]); } // Output: // "obj.a = 1" // "obj.b = 2" // "obj.c = 3"
forEach - method executes a provided function once per array element.
// Notice that index 2 is skipped since there is no item at // that position in the array. [2, 5, , 9].forEach(function (element, index, array) { console.log('a[' + index + '] = ' + element); }); // logs: // a[0] = 2 // a[1] = 5 // a[3] = 9
In terms of performance it depends on the data structure you're working with, if it's an Array
I will suggest using Angular.forEach or native forEach
, if it's an Object
for..in
will be the best, however it seems Angular.forEach
handles object pretty well too. Depending on the amount of data you working with. If it's enormous I will suggest you use libraries like Lodash or Underscore
, they handle data manipulation well.
angular.forEach
is basically a polyfill.
Therefore, if you are using angular, it doesn't matter if the browser is older because angular will provide a replacement if it's required.
In code it would look like this:
if (!Array.prototype.forEach) { Array.prototype.forEach = function(...) { // angulars own implementation } }
There are some other differences, e.g.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With