Skip to content

Commit fb86fc0

Browse files
committed
TOC links updated
1 parent c3a9c7f commit fb86fc0

File tree

1 file changed

+27
-26
lines changed

1 file changed

+27
-26
lines changed

README.md

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
console.log(foo[0], bar[0]); // => 9, 9
7070
```
7171

72-
**[[⬆]](#TOC)**
72+
**[⬆ back to top](#table-of-contents)**
7373

7474
## Objects
7575

@@ -117,7 +117,8 @@
117117
type: 'alien'
118118
};
119119
```
120-
**[[⬆]](#TOC)**
120+
121+
**[⬆ back to top](#table-of-contents)**
121122

122123
## Arrays
123124

@@ -169,7 +170,7 @@
169170
}
170171
```
171172
172-
**[[⬆]](#TOC)**
173+
**[⬆ back to top](#table-of-contents)**
173174
174175
175176
## Strings
@@ -259,7 +260,7 @@
259260
}
260261
```
261262
262-
**[[⬆]](#TOC)**
263+
**[⬆ back to top](#table-of-contents)**
263264
264265
265266
## Functions
@@ -317,7 +318,7 @@
317318
}
318319
```
319320
320-
**[[⬆]](#TOC)**
321+
**[⬆ back to top](#table-of-contents)**
321322
322323
323324
@@ -353,7 +354,7 @@
353354
var isJedi = getProp('jedi');
354355
```
355356
356-
**[[⬆]](#TOC)**
357+
**[⬆ back to top](#table-of-contents)**
357358
358359
359360
## Variables
@@ -462,7 +463,7 @@
462463
}
463464
```
464465
465-
**[[⬆]](#TOC)**
466+
**[⬆ back to top](#table-of-contents)**
466467
467468
468469
## Hoisting
@@ -551,7 +552,7 @@
551552
552553
- For more information refer to [JavaScript Scoping & Hoisting](http://www.adequatelygood.com/2010/2/JavaScript-Scoping-and-Hoisting) by [Ben Cherry](http://www.adequatelygood.com/)
553554
554-
**[[⬆]](#TOC)**
555+
**[⬆ back to top](#table-of-contents)**
555556
556557
557558
@@ -600,7 +601,7 @@
600601
601602
- For more information see [Truth Equality and JavaScript](http://javascriptweblog.wordpress.com/2011/02/07/truth-equality-and-javascript/#more-2108) by Angus Croll
602603
603-
**[[⬆]](#TOC)**
604+
**[⬆ back to top](#table-of-contents)**
604605
605606
606607
## Blocks
@@ -629,7 +630,7 @@
629630
}
630631
```
631632
632-
**[[⬆]](#TOC)**
633+
**[⬆ back to top](#table-of-contents)**
633634
634635
635636
## Comments
@@ -722,7 +723,7 @@
722723
}
723724
```
724725

725-
**[[⬆]](#TOC)**
726+
**[⬆ back to top](#table-of-contents)**
726727

727728

728729
## Whitespace
@@ -830,7 +831,7 @@
830831
.call(tron.led);
831832
```
832833

833-
**[[⬆]](#TOC)**
834+
**[⬆ back to top](#table-of-contents)**
834835

835836
## Commas
836837

@@ -892,7 +893,7 @@
892893
];
893894
```
894895
895-
**[[⬆]](#TOC)**
896+
**[⬆ back to top](#table-of-contents)**
896897
897898
898899
## Semicolons
@@ -919,7 +920,7 @@
919920
})();
920921
```
921922
922-
**[[⬆]](#TOC)**
923+
**[⬆ back to top](#table-of-contents)**
923924
924925
925926
## Type Casting & Coercion
@@ -995,7 +996,7 @@
995996
var hasAge = !!age;
996997
```
997998

998-
**[[⬆]](#TOC)**
999+
**[⬆ back to top](#table-of-contents)**
9991000

10001001

10011002
## Naming Conventions
@@ -1108,7 +1109,7 @@
11081109
};
11091110
```
11101111

1111-
**[[⬆]](#TOC)**
1112+
**[⬆ back to top](#table-of-contents)**
11121113

11131114

11141115
## Accessors
@@ -1162,7 +1163,7 @@
11621163
};
11631164
```
11641165
1165-
**[[⬆]](#TOC)**
1166+
**[⬆ back to top](#table-of-contents)**
11661167
11671168
11681169
## Constructors
@@ -1247,7 +1248,7 @@
12471248
};
12481249
```
12491250
1250-
**[[⬆]](#TOC)**
1251+
**[⬆ back to top](#table-of-contents)**
12511252
12521253
12531254
## Events
@@ -1278,7 +1279,7 @@
12781279
});
12791280
```
12801281
1281-
**[[⬆]](#TOC)**
1282+
**[⬆ back to top](#table-of-contents)**
12821283
12831284
12841285
## Modules
@@ -1309,7 +1310,7 @@
13091310
}(this);
13101311
```
13111312

1312-
**[[⬆]](#TOC)**
1313+
**[⬆ back to top](#table-of-contents)**
13131314

13141315

13151316
## jQuery
@@ -1371,14 +1372,14 @@
13711372
$sidebar.find('ul').hide();
13721373
```
13731374

1374-
**[[⬆]](#TOC)**
1375+
**[⬆ back to top](#table-of-contents)**
13751376

13761377

13771378
## ECMAScript 5 Compatibility
13781379

13791380
- Refer to [Kangax](https://twitter.com/kangax/)'s ES5 [compatibility table](http://kangax.github.com/es5-compat-table/)
13801381

1381-
**[[⬆]](#TOC)**
1382+
**[⬆ back to top](#table-of-contents)**
13821383

13831384

13841385
## Testing
@@ -1391,7 +1392,7 @@
13911392
}
13921393
```
13931394

1394-
**[[⬆]](#TOC)**
1395+
**[⬆ back to top](#table-of-contents)**
13951396

13961397

13971398
## Performance
@@ -1405,7 +1406,7 @@
14051406
- [Long String Concatenation](http://jsperf.com/ya-string-concat)
14061407
- Loading...
14071408

1408-
**[[⬆]](#TOC)**
1409+
**[⬆ back to top](#table-of-contents)**
14091410

14101411

14111412
## Resources
@@ -1464,7 +1465,7 @@
14641465
- [Dustin Diaz](http://dustindiaz.com/)
14651466
- [nettuts](http://net.tutsplus.com/?s=javascript)
14661467

1467-
**[[⬆]](#TOC)**
1468+
**[⬆ back to top](#table-of-contents)**
14681469

14691470
## In the Wild
14701471

@@ -1543,6 +1544,6 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
15431544
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
15441545
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15451546
1546-
**[[⬆]](#TOC)**
1547+
**[⬆ back to top](#table-of-contents)**
15471548
15481549
# };

0 commit comments

Comments
 (0)