Skip to content

Commit

Permalink
Merge pull request #297 from swaniris/master
Browse files Browse the repository at this point in the history
fixed for word unity
  • Loading branch information
timruffles committed Sep 29, 2015
2 parents 695a6b7 + 80a1dbf commit 37c7668
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/ko/function/arguments.md
Expand Up @@ -27,7 +27,7 @@ JavaScript의 모든 함수 스코프에는 `arguments`라는 특별한 변수
// 내곡동에 땅이라도 산다.
}

또 다른 트릭은 `call``apply`를 함께 사용하여 메써드(`this`의 값과 인자들을 사용하는 함수)를
또 다른 트릭은 `call``apply`를 함께 사용하여 메소드(`this`의 값과 인자들을 사용하는 함수)를
단지 인자들만 사용하는 일반 함수로 바꾸는 것이다.

function Person(first, last) {
Expand All @@ -42,7 +42,7 @@ JavaScript의 모든 함수 스코프에는 `arguments`라는 특별한 변수
return first + (joiner || " ") + last;
};

// "fullname" 메써드의 비결합(unbound) 버전을 생성한다.
// "fullname" 메소드의 비결합(unbound) 버전을 생성한다.
// 첫번째 인자로 'first'와 'last' 속성을 가지고 있는 어떤 객체도 사용 가능하다.
// "fullname"의 인자 개수나 순서가 변경되더라도 이 랩퍼를 변경할 필요는 없을 것이다.
Person.fullname = function() {
Expand Down
2 changes: 1 addition & 1 deletion doc/ko/function/this.md
Expand Up @@ -68,7 +68,7 @@ Global Scope에서도 this가 사용될 수 있고 이때에는 *Global* 객체
`self`는 통상적인 변수 이름이지만, 바깥쪽의 `this`를 참조하기 위해 일반적으로 사용된다.
또한 [클로저](#function.closures)와 결합하여 `this`의 값을 주고 받는 용도로 사용할 수도 있다.

ECMAScript 5부터는 익명 함수와 결합된 `bind` 메써드를 사용하여 같은 결과를 얻을 수 있다.
ECMAScript 5부터는 익명 함수와 결합된 `bind` 메소드를 사용하여 같은 결과를 얻을 수 있다.

Foo.method = function() {
var test = function() {
Expand Down

0 comments on commit 37c7668

Please sign in to comment.