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
- [22.4](#coercion--comment-deviations) If for whatever reason you are doing something wild and `parseInt` is your bottleneck and need to use Bitshift for [performance reasons](https://jsperf.com/coercion-vs-casting/3), leave a comment explaining why and what you’re doing.
3216
+
- [22.4](#coercion--comment-deviations) If for whatever reason you are doing something wild and `parseInt` is your bottleneck and need to use Bitshift for [performance reasons](https://web.archive.org/web/20200414205431/https://jsperf.com/coercion-vs-casting/3), leave a comment explaining why and what you’re doing.
3217
3217
3218
3218
```javascript
3219
3219
// good
@@ -3636,7 +3636,7 @@ Other Style Guides
3636
3636
```
3637
3637
3638
3638
<a name="jquery--queries"></a><a name="25.3"></a>
3639
-
- [26.3](#jquery--queries) For DOM queries use Cascading `$('.sidebar ul')` or parent > child `$('.sidebar > ul')`. [jsPerf](https://jsperf.com/jquery-find-vs-context-sel/16)
3639
+
- [26.3](#jquery--queries) For DOM queries use Cascading `$('.sidebar ul')` or parent > child `$('.sidebar > ul')`. [jsPerf](https://web.archive.org/web/20200414183810/https://jsperf.com/jquery-find-vs-context-sel/16)
3640
3640
3641
3641
<a name="jquery--find"></a><a name="25.4"></a>
3642
3642
- [26.4](#jquery--find) Use `find`with scoped jQuery object queries.
@@ -3760,12 +3760,12 @@ Other Style Guides
3760
3760
## Performance
3761
3761
3762
3762
- [On Layout & Web Performance](https://www.kellegous.com/j/2013/01/26/layout-performance/)
3763
-
- [String vs Array Concat](https://jsperf.com/string-vs-array-concat/2)
3764
-
- [Try/Catch Cost In a Loop](https://jsperf.com/try-catch-in-loop-cost/12)
- [Are JavaScript functions like `map()`, `reduce()`, and `filter()` optimized for traversing arrays?](https://www.quora.com/JavaScript-programming-language-Are-Javascript-functions-like-map-reduce-and-filter-already-optimized-for-traversing-array/answer/Quildreen-Motta)
3770
3770
- Loading...
3771
3771
@@ -3829,7 +3829,7 @@ Other Style Guides
3829
3829
- [Superhero.js](http://superherojs.com/) - Kim Joar Bekkelund, Mads Mobæk, & Olav Bjorkoy
0 commit comments