8000 앙카 수정 · hunylee/javascript-style-guide@17f58ec · GitHub
[go: up one dir, main page]

Skip to content

Commit 17f58ec

Browse files
authored
앙카 수정
1 parent 273e67d commit 17f58ec

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

README.md

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
console.log(foo[0], bar[0]); // => 9, 9
8585
```
8686

87-
**[⬆ back to top](#table-of-contents)**
87+
**[⬆ back to top](#목차)**
8888

8989
## 참조(References)
9090

@@ -140,7 +140,7 @@
140140
console.log(b); // ReferenceError
141141
```
142142
143-
**[⬆ back to top](#table-of-contents)**
143+
**[⬆ back to top](#목차)**
144144
145145
## 오브젝트(Objects)
146146
@@ -298,7 +298,7 @@
298298
};
299299
```
300300
301-
**[⬆ back to top](#table-of-contents)**
301+
**[⬆ back to top](#목차)**
302302
303303
## 배열(Arrays)
304304
@@ -353,7 +353,7 @@
353353
const nodes = Array.from(foo);
354354
```
355355
356-
**[⬆ back to top](#table-of-contents)**
356+
**[⬆ back to top](#목차)**
357357
358358
## 구조화대입(Destructuring)
359359
@@ -431,7 +431,7 @@
431431
```
432432
433433
434-
**[⬆ back to top](#table-of-contents)**
434+
**[⬆ back to top](#목차)**
435435
436436
## 문자열(Strings)
437437
@@ -495,7 +495,7 @@
495495
- [6.5](#6.5) <a name='6.5'></a> Never use `eval()` on a string, it opens too many vulnerabilities.
496496
- [6.5](#6.5) <a name='6.5'></a> 절대로 `eval()` 을 이용하지 마십시오. 이것은 많은 취약점을 만들기 때문입니다.
497497
498-
**[⬆ back to top](#table-of-contents)**
498+
**[⬆ back to top](#목차)**
499499
500500
501501
## 함수(Functions)
@@ -669,7 +669,7 @@
669669
var subtract = Function('a', 'b', 'return a - b');
670670
```
671671
672-
**[⬆ back to top](#table-of-contents)**
672+
**[⬆ back to top](#목차)**
673673
674674
## Arrow함수(Arrow Functions)
675675
@@ -762,7 +762,7 @@
762762
[1, 2, 3].reduce((y, x) => x + y);
763763
```
764764
765-
**[⬆ back to top](#table-of-contents)**
765+
**[⬆ back to top](#목차)**
766766
767767
768768
## Classes & Constructors
@@ -881,7 +881,7 @@
881881
}
882882
```
883883
884-
**[⬆ back to top](#table-of-contents)**
884+
**[⬆ back to top](#목차)**
885885
886886
887887
## 모듈(Modules)
@@ -940,7 +940,7 @@
940940
export default es6;
941941
```
942942
943-
**[⬆ back to top](#table-of-contents)**
943+
**[⬆ back to top](#목차)**
944944
945945
## 이터레이터와 제너레이터(Iterators and Generators)
946946
@@ -979,7 +979,7 @@
979979
980980
> 왜? ES5로 잘 transpile 하지 않기 때문입니다.
981981
982-
**[⬆ back to top](#table-of-contents)**
982+
**[⬆ back to top](#목차)**
983983
984984
985985
## 프로퍼티(Properties)
@@ -1016,7 +1016,7 @@
10161016
const isJedi = getProp('jedi');
10171017
```
10181018
1019-
**[⬆ back to top](#table-of-contents)**
1019+
**[⬆ back to top](#목차)**
10201020
10211021
10221022
## 변수(Variables)
@@ -1136,7 +1136,7 @@
11361136
}
11371137
```
11381138
1139-
**[⬆ back to top](#table-of-contents)**
1139+
**[⬆ back to top](#목차)**
11401140
11411141
11421142
## Hoisting
@@ -1246,7 +1246,7 @@
12461246
- 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/).
12471247
- 더 자세한건 이쪽을 참고해 주십시오. [JavaScript Scoping & Hoisting](http://www.adequatelygood.com/2010/2/JavaScript-Scoping-and-Hoisting/) by [Ben Cherry](http://www.adequatelygood.com/).
12481248
1249-
**[⬆ back to top](#table-of-contents)**
1249+
**[⬆ back to top](#목차)**
12501250
12511251
12521252
## 조건식과 등가식(Comparison Operators & Equality)
@@ -1305,7 +1305,7 @@
13051305
- [15.4](#15.4) <a name='15.4'></a> For more information see [Truth Equality and JavaScript](http://javascriptweblog.wordpress.com/2011/02/07/truth-equality-and-javascript/#more-2108) by Angus Croll.
13061306
- [15.4](#15.4) <a name='15.4'></a> 더 자세한건 이쪽을 참고해 주십시오. [Truth Equality and JavaScript](http://javascriptweblog.wordpress.com/2011/02/07/truth-equality-and-javascript/#more-2108) by Angus Croll.
13071307
1308-
**[⬆ back to top](#table-of-contents)**
1308+
**[⬆ back to top](#목차)**
13091309
13101310
13111311
## 블록(Blocks)
@@ -1359,7 +1359,7 @@
13591359
```
13601360
13611361
1362-
**[⬆ back to top](#table-of-contents)**
1362+
**[⬆ back to top](#목차)**
13631363
13641364
13651365
## 코멘트(Comments)
@@ -1469,7 +1469,7 @@
14691469
}
14701470
```
14711471

1472-
**[⬆ back to top](#table-of-contents)**
1472+
**[⬆ back to top](#목차)**
14731473

14741474

14751475
## 공백(Whitespace)
@@ -1763,7 +1763,7 @@
17631763
const foo = { clark: 'kent' };
17641764
```
17651765
1766-
**[⬆ back to top](#table-of-contents)**
1766+
**[⬆ back to top](#목차)**
17671767
17681768
## 콤마(Commas)
17691769
@@ -1848,7 +1848,7 @@
18481848
];
18491849
```
18501850
1851-
**[⬆ back to top](#table-of-contents)**
1851+
**[⬆ back to top](#목차)**
18521852
18531853
18541854
## 세미콜론(Semicolons)
@@ -1879,7 +1879,7 @@
18791879
18801880
[Read more](http://stackoverflow.com/questions/7365172/semicolon-before-self-invoking-function/7365214%237365214).
18811881
1882-
**[⬆ back to top](#table-of-contents)**
1882+
**[⬆ back to top](#목차)**
18831883
18841884
18851885
## 형변환과 강제(Type Casting & Coercion)
@@ -1968,7 +1968,7 @@
19681968
const hasAge = !!age;
19691969
```
19701970
1971-
**[⬆ back to top](#table-of-contents)**
1971+
**[⬆ back to top](#목차)**
19721972
19731973
19741974
## 명명규칙(Naming Conventions)
@@ -2111,7 +2111,7 @@
21112111
```
21122112
21132113
2114-
**[⬆ back to top](#table-of-contents)**
2114+
**[⬆ back to top](#목차)**
21152115
21162116
21172117
## 억세서(Accessors)
@@ -2171,7 +2171,7 @@
21712171
}
21722172
```
21732173
2174-
**[⬆ back to top](#table-of-contents)**
2174+
**[⬆ back to top](#목차)**
21752175
21762176
21772177
## 이벤트(Events)
@@ -2205,7 +2205,7 @@
22052205
});
22062206
```
22072207
2208-
**[⬆ back to top](#table-of-contents)**
2208+
**[⬆ back to top](#목차)**
22092209
22102210
22112211
## jQuery
@@ -2275,14 +2275,14 @@
22752275
$sidebar.find('ul').hide();
22762276
```
22772277
2278-
**[⬆ back to top](#table-of-contents)**
2278+
**[⬆ back to top](#목차)**
22792279
22802280
22812281
## ECMAScript 5 Compatibility
22822282
22832283
- [26.1](#26.1) <a name='26.1'></a> Refer to [Kangax](https://twitter.com/kangax/)'s ES5 [compatibility table](http://kangax.github.io/es5-compat-table/).
22842284
2285-
**[⬆ back to top](#table-of-contents)**
2285+
**[⬆ back to top](#목차)**
22862286
22872287
## ECMAScript 6 Styles
22882288
@@ -2302,7 +2302,7 @@
23022302
1. [Iterators and Generators](#iterators-and-generators)
23032303
1. [Modules](#modules)
23042304
2305-
**[⬆ back to top](#table-of-contents)**
2305+
**[⬆ back to top](#목차)**
23062306
23072307
## Testing
23082308
@@ -2322,7 +2322,7 @@
23222322
- 100% test coverage is a good goal to strive for, even if it's not always practical to reach it.
23232323
- Whenever you fix a bug, _write a regression test_. A bug fixed without a regression test is almost certainly going to break again in the future.
23242324
2325-
**[⬆ back to top](#table-of-contents)**
2325+
**[⬆ back to top](#목차)**
23262326
23272327
23282328
## Performance
@@ -2336,7 +2336,7 @@
23362336
- [Long String Concatenation](http://jsperf.com/ya-string-concat)
23372337
- Loading...
23382338
2339-
**[⬆ back to top](#table-of-contents)**
2339+
**[⬆ back to top](#목차)**
23402340
23412341
23422342
## Resources
@@ -2418,7 +2418,7 @@
24182418
- [JavaScript Jabber](https://devchat.tv/js-jabber/)
24192419
24202420
2421-
**[⬆ back to top](#table-of-contents)**
2421+
**[⬆ back to top](#목차)**
24222422
24232423
## In the Wild
24242424
@@ -2480,7 +2480,7 @@
24802480
- **Zillow**: [zillow/javascript](https://github.com/zillow/javascript)
24812481
- **ZocDoc**: [ZocDoc/javascript](https://github.com/ZocDoc/javascript)
24822482
2483-
**[⬆ back to top](#table-of-contents)**
2483+
**[⬆ back to top](#목차)**
24842484
24852485
## Translation
24862486
@@ -2540,7 +2540,7 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25402540
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25412541
25422542
2543-
**[⬆ back to top](#table-of-contents)**
2543+
**[⬆ back to top](#목차)**
25442544
25452545
## Amendments
25462546

0 commit comments

Comments
 (0)
0