Skip to content

Commit

Permalink
docs(keyBy): Translate title into Korean
Browse files Browse the repository at this point in the history
  • Loading branch information
mass2527 committed Jun 29, 2024
1 parent 2a2c4ee commit dada0d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/ko/reference/array/keyBy.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@
키는 함수에서 생성된 키이고, 값은 해당 키를 생성한 요소인 객체를 반환해요.
만약 동일한 키를 생성하는 요소가 여러 개 있다면, 그 중 마지막 요소가 값으로 사용돼요.

## Signature
## 인터페이스

```typescript
function keyBy<T, K extends string>(arr: readonly T[], getKeyFromItem: (item: T) => K): Record<K, T>;
```

### Parameters
### 파라미터

- `arr` (`T[]`): 매핑할 배열.
- `getKeyFromItem` (`(item: T) => K`): 요소에서 키를 생성하는 함수.

### Returns
### 반환 값

(`Record<K, T>`) 키와 해당 배열 요소들이 매핑된 객체를 반환해요.

## Examples
## 예시

```typescript
const array = [
Expand Down

0 comments on commit dada0d4

Please sign in to comment.