8000 Update README.md · funnycom/javascript-style-guide@d0028c8 · GitHub
[go: up one dir, main page]

Skip to content

Commit d0028c8

Browse files
committed
Update README.md
1 parent 59534aa commit d0028c8

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

README.md

Lines changed: 25 additions & 25 deletions
10000 Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
};
119119
120120
```
121-
**[[]](#TOC)**
121+
**[[]](#TOC)**
122122

123123
## <a name='arrays'>Arrays</a> [원문](https://github.com/airbnb/javascript#arrays)
124124

@@ -170,7 +170,7 @@
170170
}
171171
```
172172

173-
**[[]](#TOC)**
173+
**[[]](#TOC)**
174174

175175

176176
## <a name='strings'>Strings</a> [원문](https://github.com/airbnb/javascript#strings)
@@ -260,7 +260,7 @@
260260
}
261261
```
262262

263-
**[[]](#TOC)**
263+
**[[]](#TOC)**
264264

265265

266266
## <a name='functions'>Functions</a> [원문](https://github.com/airbnb/javascript#functions)
@@ -318,7 +318,7 @@
318318
}
319319
```
320320

321-
**[[]](#TOC)**
321+
**[[]](#TOC)**
322322

323323

324324

@@ -354,7 +354,7 @@
354354
var isJedi = getProp('jedi');
355355
```
356356

357-
**[[]](#TOC)**
357+
**[[]](#TOC)**
358358

359359

360360
## <a name='variables'>Variables</a> [원문](https://github.com/airbnb/javascript#variables)
@@ -463,7 +463,7 @@
463463
}
464464
```
465465

466-
**[[]](#TOC)**
466+
**[[]](#TOC)**
467467

468468

469469
## <a name='hoisting'>Hoisting</a> [원문](https://github.com/airbnb/javascript#hoisting)
@@ -549,7 +549,7 @@
549549

550550
- 더 자세한 정보는 [Ben Cherry](http://www.adequatelygood.com/)의 [JavaScript Scoping & Hoisting](http://www.adequatelygood.com/2010/2/JavaScript-Scoping-and-Hoisting)를 참조하십시오.
551551

552-
**[[]](#TOC)**
552+
**[[]](#TOC)**
553553

554554

555555

@@ -599,7 +599,7 @@
599599

600600
- 더 자세한 정보는 Angus Croll 의 [Truth Equality and JavaScript](http://javascriptweblog.wordpress.com/2011/02/07/truth-equality-and-javascript/#more-2108)를 참고해 주십시오.
601601

602-
**[[]](#TOC)**
602+
**[[]](#TOC)**
603603

604604

605605
## <a name='blocks'>Blocks</a> [원문](https://github.com/airbnb/javascript#blocks)
@@ -628,7 +628,7 @@
628628
}
629629
```
630630

631-
**[[]](#TOC)**
631+
**[[]](#TOC)**
632632

633633

634634
## <a name='comments'>Comments</a> [원문](https://github.com/airbnb/javascript#comments)
@@ -720,7 +720,7 @@
720720
}
721721
```
722722

723-
**[[]](#TOC)**
723+
**[[]](#TOC)**
724724

725725

726726
## <a name='whitespace'>Whitespace</a> [원문](https://github.com/airbnb/javascript#whitespace)
@@ -816,7 +816,7 @@
816816
.call(tron.led);
817817
```
818818

819-
**[[]](#TOC)**
819+
**[[]](#TOC)**
820820

821821
## <a name='commas'>Commas</a> [원문](https://github.com/airbnb/javascript#commas)
822822

@@ -880,7 +880,7 @@
880880
];
881881
```
882882

883-
**[[]](#TOC)**
883+
**[[]](#TOC)**
884884

885885

886886
## <a name='semicolons'>Semicolons</a> [원문](https://github.com/airbnb/javascript#semicolons)
@@ -907,7 +907,7 @@
907907
})();
908908
```
909909

910-
**[[]](#TOC)**
910+
**[[]](#TOC)**
911911

912912

913913
## <a name='type-coercion'>Type Casting & Coercion(강제)</a> [원문](https://github.com/airbnb/javascript#type-coercion)
@@ -983,7 +983,7 @@
983983
var hasAge = !!age;
984984
```
985985

986-
**[[]](#TOC)**
986+
**[[]](#TOC)**
987987

988988

989989
## <a name='naming-conventions'>Naming Conventions</a> [원문](https://github.com/airbnb/javascript#naming-conventions)
@@ -1097,7 +1097,7 @@
10971097
};
10981098
```
10991099

1100-
**[[]](#TOC)**
1100+
**[[]](#TOC)**
11011101

11021102

11031103
## <a name='accessors'>Accessors</a> [원문](https://github.com/airbnb/javascript#accessors)
@@ -1150,7 +1150,7 @@
11501150
};
11511151
```
11521152

1153-
**[[]](#TOC)**
1153+
**[[]](#TOC)**
11541154

11551155

11561156
## <a name='constructors'>Constructors</a> [원문](https://github.com/airbnb/javascript#constructors)
@@ -1235,7 +1235,7 @@
12351235
};
12361236
```
12371237

1238-
**[[]](#TOC)**
1238+
**[[]](#TOC)**
12391239

12401240
## <a name='events'>Events</a>
12411241

@@ -1266,7 +1266,7 @@
12661266
});
12671267
```
12681268

1269-
**[[]](#TOC)**
1269+
**[[]](#TOC)**
12701270

12711271
## <a name='modules'>Modules</a> [원문](https://github.com/airbnb/javascript#modules)
12721272

@@ -1296,7 +1296,7 @@
12961296
}(this);
12971297
```
12981298

1299-
**[[]](#TOC)**
1299+
**[[]](#TOC)**
13001300

13011301

13021302
## <a name='jquery'>jQuery</a> [원문](https://github.com/airbnb/javascript#jquery)
@@ -1358,14 +1358,14 @@
13581358
$sidebar.find('ul');
13591359
```
13601360

1361-
**[[]](#TOC)**
1361+
**[[]](#TOC)**
13621362

13631363

13641364
## <a name='es5'>ECMAScript 5 Compatibility</a> [원문](https://github.com/airbnb/javascript#es5)
13651365

13661366
- [Kangax](https://twitter.com/kangax/)의 ES5 [compatibility table](http://kangax.github.com/es5-compat-table/)를 참조해 주십시오.
13671367

1368-
**[[]](#TOC)**
1368+
**[[]](#TOC)**
13691369

13701370

13711371
## <a name='testing'>Testing</a> [원문](https://github.com/airbnb/javascript#testing)
@@ -1378,7 +1378,7 @@
13781378
}
13791379
```
13801380

1381-
**[[]](#TOC)**
1381+
**[[]](#TOC)**
13821382

13831383

13841384
## <a name='performance'>Performance</a> [원문](https://github.com/airbnb/javascript#performance)
@@ -1392,7 +1392,7 @@
13921392
- [Long String Concatenation](http://jsperf.com/ya-string-concat)
13931393
- Loading...
13941394

1395-
**[[]](#TOC)**
1395+
**[[]](#TOC)**
13961396

13971397

13981398
## <a name='resources'>Resources</a> [원문](https://github.com/airbnb/javascript#resources)
@@ -1448,7 +1448,7 @@
14481448
- [Dustin Diaz](http://dustindiaz.com/)
14491449
- [nettuts](http://net.tutsplus.com/?s=javascript)
14501450

1451-
**[[]](#TOC)**
1451+
**[[]](#TOC)**
14521452

14531453
## <a name='in-the-wild'>In the Wild</a>
14541454

@@ -1519,7 +1519,7 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
15191519
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
15201520
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15211521
1522-
**[[]](#TOC)**
1522+
**[[]](#TOC)**
15231523
15241524
# };
15251525

0 commit comments

Comments
 (0)
0