added language to docblocks

This commit is contained in:
Jan Halfar 2022-01-20 18:18:54 +01:00 committed by GitHub
parent 73e86672cb
commit c6205bf62e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,16 +9,18 @@ sidebar_position: 4
JS is nowadays extremely fast and yet we have many performance issues. Here you can find few common mistakes that occur in JS that can decrease performance.
### Extensive use of .map, .filter
Let's say you have a large list of objects and you would like to filter them and transform them in some form. Usually we do this:
```
```JavaScript
const largeArray = [ .... ]
largeArray.map(obj => transformObj(obj)).filter(omitBadObject)
```
In the above case we first loop through whole set, transform it and then filter things out. Not only does this goes through all the items twice, but it also first time goes through all the items and then filters them.
One optimization would be to first filter them and then transform them, but ideally we should just use a normal for loop or forEach where you go through items only once.
```
```JavaScript
const finalArray = []
largeArray.forEach(obj => {
if (omitBadObject(obj)) {
@ -26,4 +28,5 @@ largeArray.forEach(obj => {
}
})
```
This code will skip another loop of items.
This code will skip another loop of items.