Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e16e7df commit 6f9bcd3Copy full SHA for 6f9bcd3
src/ng/rootScope.js
@@ -15,7 +15,7 @@
15
*
16
* Loop operations are optimized by using while(count--) { ... }
17
* - this means that in order to keep the same order of execution as addition we have to add
18
- * items to the array at the beginning (shift) instead of at the end (push)
+ * items to the array at the beginning (unshift) instead of at the end (push)
19
20
* Child scopes are created and removed often
21
* - Using an array would be slow since inserts in middle are expensive so we use linked list
0 commit comments