Skip to content

Commit d601701

Browse files
Mustafa UZUNljharb
authored andcommitted
[readme] wayback machine, or remove, broken links
1 parent 49d08a2 commit d601701

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

README.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3213,7 +3213,7 @@ Other Style Guides
32133213
```
32143214
32153215
<a name="coercion--comment-deviations"></a><a name="21.4"></a>
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://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.
32173217
32183218
```javascript
32193219
// good
@@ -3636,7 +3636,7 @@ Other Style Guides
36363636
```
36373637

36383638
<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)
36403640

36413641
<a name="jquery--find"></a><a name="25.4"></a>
36423642
- [26.4](#jquery--find) Use `find` with scoped jQuery object queries.
@@ -3760,12 +3760,12 @@ Other Style Guides
37603760
## Performance
37613761

37623762
- [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)
3765-
- [Bang Function](https://jsperf.com/bang-function)
3766-
- [jQuery Find vs Context, Selector](https://jsperf.com/jquery-find-vs-context-sel/164)
3767-
- [innerHTML vs textContent for script text](https://jsperf.com/innerhtml-vs-textcontent-for-script-text)
3768-
- [Long String Concatenation](https://jsperf.com/ya-string-concat/38)
3763+
- [String vs Array Concat](https://web.archive.org/web/20200414200857/https://jsperf.com/string-vs-array-concat/2)
3764+
- [Try/Catch Cost In a Loop](https://web.archive.org/web/20200414190827/https://jsperf.com/try-catch-in-loop-cost/12)
3765+
- [Bang Function](https://web.archive.org/web/20200414205426/https://jsperf.com/bang-function)
3766+
- [jQuery Find vs Context, Selector](https://web.archive.org/web/20200414200850/https://jsperf.com/jquery-find-vs-context-sel/164)
3767+
- [innerHTML vs textContent for script text](https://web.archive.org/web/20200414205428/https://jsperf.com/innerhtml-vs-textcontent-for-script-text)
3768+
- [Long String Concatenation](https://web.archive.org/web/20200414203914/https://jsperf.com/ya-string-concat/38)
37693769
- [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)
37703770
- Loading...
37713771

@@ -3829,7 +3829,7 @@ Other Style Guides
38293829
- [Superhero.js](http://superherojs.com/) - Kim Joar Bekkelund, Mads Mobæk, & Olav Bjorkoy
38303830
- [JSBooks](https://jsbooks.revolunet.com/) - Julien Bouquillon
38313831
- [Third Party JavaScript](https://www.manning.com/books/third-party-javascript) - Ben Vinegar and Anton Kovalyov
3832-
- [Effective JavaScript: 68 Specific Ways to Harness the Power of JavaScript](https://amzn.com/0321812182) - David Herman
3832+
- [Effective JavaScript: 68 Specific Ways to Harness the Power of JavaScript](https://amzn.com/dp/0321812182) - David Herman
38333833
- [Eloquent JavaScript](https://eloquentjavascript.net/) - Marijn Haverbeke
38343834
- [You Don’t Know JS: ES6 & Beyond](https://shop.oreilly.com/product/0636920033769.do) - Kyle Simpson
38353835

@@ -3911,16 +3911,15 @@ Other Style Guides
39113911
- **MinnPost**: [MinnPost/javascript](https://github.com/MinnPost/javascript)
39123912
- **MitocGroup**: [MitocGroup/javascript](https://github.com/MitocGroup/javascript)
39133913
- **Muber**: [muber](https://github.com/muber/)
3914-
- **National Geographic**: [natgeo](https://github.com/natgeo/)
3914+
- **National Geographic Society**: [natgeosociety](https://github.com/natgeosociety/)
39153915
- **NullDev**: [NullDevCo/JavaScript-Styleguide](https://github.com/NullDevCo/JavaScript-Styleguide)
39163916
- **Nulogy**: [nulogy/javascript](https://github.com/nulogy/javascript)
39173917
- **Orange Hill Development**: [orangehill/javascript](https://github.com/orangehill/javascript)
39183918
- **Orion Health**: [orionhealth/javascript](https://github.com/orionhealth/javascript)
3919-
- **OutBoxSoft**: [OutBoxSoft/javascript](https://github.com/OutBoxSoft/javascript)
39203919
- **Peerby**: [Peerby/javascript](https://github.com/Peerby/javascript)
39213920
- **Pier 1**: [Pier1/javascript](https://github.com/pier1/javascript)
39223921
- **Qotto**: [Qotto/javascript-style-guide](https://github.com/Qotto/javascript-style-guide)
3923-
- **React**: [facebook.github.io/react/contributing/how-to-contribute.html#style-guide](https://facebook.github.io/react/contributing/how-to-contribute.html#style-guide)
3922+
- **React**: [reactjs.org/docs/how-to-contribute.html#style-guide](https://reactjs.org/docs/how-to-contribute.html#style-guide)
39243923
- **REI**: [reidev/js-style-guide](https://github.com/rei/code-style-guides/)
39253924
- **Ripple**: [ripple/javascript-style-guide](https://github.com/ripple/javascript-style-guide)
39263925
- **Sainsbury’s Supermarkets**: [jsainsburyplc](https://github.com/jsainsburyplc)

0 commit comments

Comments
 (0)