Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ko] TypedArray.prototype.map() 신규 번역 외 #22359

Merged
merged 2 commits into from
Jul 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
린트 에러 수정
  • Loading branch information
wisedog committed Jul 11, 2024
commit 9ff5b48f33bfb3f7762e67ee147e03f0ea85a7c2
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const roots = numbers.map(Math.sqrt);
```js
const numbers = new Uint8Array([1, 4, 9]);
const doubles = numbers.map((num) => num * 2);
// doubles 은 이제 Uint8Array [2, 8, 18] 이며
// doubles 은 이제 Uint8Array [2, 8, 18] 이며
// numbers 여전히 Uint8Array [1, 4, 9] 입니다
```

Expand Down