You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for seeing where optimization is lacking. Target those in the meantime, until
821
-
they are fixed if they can be.
816
+
### Aşırı Optimizasyon Yapmayın
817
+
Modern tarayıcılar çalışma anında arkaplanda çok fazla optimizasyon yaparlar.
818
+
Çoğu zaman yaptığınız optimizasyon, boşa zaman harcamaktır. Optimzasyonun nerede eksik olduğunu görmek için [bu kaynaklar](https://github.com/petkaantonov/bluebird/wiki/Optimization-killers) iyidir.
822
819
823
820
**Kötü:**
824
821
```javascript
825
822
826
-
//On old browsers, each iteration with uncached `list.length` would be costly
827
-
//because of `list.length` recomputation. In modern browsers, this is optimized.
828
-
for (let i =0, len =list.length; i < len; i++) {
823
+
//Eski tarayıcılarda `list.length` için önbelleğe alınmamış her yineleme maliyetlidir.
824
+
//Çünkü `list.length` her defasında yeniden sayılır. Modern tarayıcılarda bu optimize edilmiştir.
0 commit comments