Skip to content

Commit f8eae31

Browse files
Update Description.md
1 parent df6ff85 commit f8eae31

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

Description.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,21 @@ The following table gives an overview of studied performance issues and their ro
1313
295 (2) | JQuery | Assign value to variable val only when value is not a function, instead of doing it always. Localize val variable to each block | JIT unfrendly |
1414
200 | JQuery | Abstraction of method that clones the DOM element. This avoids calls to Jquery.find method | Inefficient API usage, Inefficient copying |
1515
4359 | Angular | Use &1 instead of %2 for even odd checking| Other |
16+
4457 | Angular | Empty() or Html("") JQuery function| Inefficient API usage |
17+
5388 | Angular | To invoke function use f.apply instead of function call with arguments check (args.length)| Inefficient API usage, Special cases |
18+
5457 | Angular | Two calls to CharAt instead of substr| Inefficient API usage |
19+
7012 | Angular | Use Object.keys instead of for in + hop| Inefficient iteration |
20+
7163 | Angular | Caching the child scope class| Repeated execution |
21+
7501 | Angular | Avoid stringification with toJson (JSON.stringify) in case of number| Inefficient API usage, Generic API, Special cases |
22+
7735 | Angular | Native isArray instead of toString call| Inefficient API usage, Inefficient reimplementation |
23+
9942 | Angular | Use Array.slice for coping array instead of for loop| Inefficient copying |
24+
8898 | Angular | Use for loop instead of forEach (angular method)| Inefficient iteration |
25+
11215 | Angular | Remove unnecessary checks: isArray, isRegExp, isObject, isTypedArray| Inefficient API usage, Repeated execution, Repeated checks|
26+
9369 | Angular | Use textContent property access instead of .text()| Generic API |
27+
8515 (7,8,10)| Angular | Use for loop instead of forEach (angular method)| API reimplementation|
28+
8515 (12)| Angular | Dont register DOM listener for $destroy event| Special cases|
29+
30+
1631

1732

1833

0 commit comments

Comments
 (0)