Skip to content

Commit

Permalink
Translate 16190d8, c5411a4
Browse files Browse the repository at this point in the history
  • Loading branch information
parksb committed Feb 7, 2018
1 parent e9872e6 commit 67c8a15
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
[![Downloads](https://img.shields.io/npm/dm/eslint-config-airbnb-base.svg)](https://www.npmjs.com/package/eslint-config-airbnb-base)
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/airbnb/javascript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

This guide is available in other languages too. See [Translation](#translation)

이 스타일 가이드는 다른 언어로도 제공됩니다. [Translation](#translation)을 보세요.

다른 스타일 가이드

- [ES5 (구버전)](es5-deprecated/)
Expand Down Expand Up @@ -3387,6 +3391,11 @@

// good
this.firstName = 'Panda';

// good, in environments where WeakMaps are available
// see https://kangax.github.io/compat-table/es6/#test-WeakMap
const firstNames = new WeakMap();
firstNames.set(this, 'Panda');
```
<a name="naming--self-this"></a><a name="22.5"></a>
Expand Down Expand Up @@ -4042,7 +4051,7 @@
This style guide is also available in other languages:
다른 언어로 이 스타일 가이드를 살펴볼 수 있습니다:
이 스타일 가이드는 다른 언어로도 제공됩니다:
- ![br](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Brazil.png) **Brazilian Portuguese**: [armoucar/javascript-style-guide](https://github.com/armoucar/javascript-style-guide)
- ![bg](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Bulgaria.png) **Bulgarian**: [borislavvv/javascript](https://github.com/borislavvv/javascript)
Expand Down

0 comments on commit 67c8a15

Please sign in to comment.