-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ko] TypedArray.prototype.toString() 신규 번역 외 (#22187)
* [ko] TypedArray.prototype.toString() 신규 번역 외 - TypedArray.prototype.toString() 신규 번역 - Array.prototype.toString() 최신화 * 리뷰사항 수정
- Loading branch information
Showing
2 changed files
with
132 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
files/ko/web/javascript/reference/global_objects/typedarray/tostring/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
title: TypedArray.prototype.toString() | ||
slug: Web/JavaScript/Reference/Global_Objects/TypedArray/toString | ||
l10n: | ||
sourceCommit: c2445ce1dc3a0170e2fbfdbee10e18a7455c2282 | ||
--- | ||
|
||
{{JSRef}} | ||
|
||
{{jsxref("TypedArray")}} 인스턴스의 **`toString()`** 메서드는 명시된 형식화 배열과 배열의 요소를 표현하는 문자열을 반환합니다. 이 메서드는 {{jsxref("Array.prototype.toString()")}}과 같은 알고리즘을 가집니다. | ||
|
||
{{EmbedInteractiveExample("pages/js/typedarray-tostring.html", "shorter")}} | ||
|
||
## 구문 | ||
|
||
```js-nolint | ||
toString() | ||
``` | ||
|
||
### 매개변수 | ||
|
||
없음. | ||
|
||
### 반환 값 | ||
|
||
해당 형식화 배열을 표현하는 문자열. | ||
|
||
## 설명 | ||
|
||
좀 더 많은 정보는 {{jsxref("Array.prototype.toString()")}}을 참고하시기 바랍니다. 이 메서드는 범용적이지 않으며, 형식화 배열 인스턴스에서만 호출됩니다. | ||
|
||
## 예제 | ||
|
||
### 형식화 배열을 문자열로 변환하기 | ||
|
||
```js | ||
const uint8 = new Uint8Array([1, 2, 3]); | ||
// 명시적 변환 | ||
console.log(uint8.toString()); // 1,2,3 | ||
// 암시적 변환 | ||
console.log(`${uint8}`); // 1,2,3 | ||
``` | ||
|
||
## 명세서 | ||
|
||
{{Specifications}} | ||
|
||
## 브라우저 호환성 | ||
|
||
{{Compat}} | ||
|
||
## 같이 보기 | ||
|
||
- [JavaScript 형식화 배열](/ko/docs/Web/JavaScript/Guide/Typed_arrays) 가이드 | ||
- {{jsxref("TypedArray")}} | ||
- {{jsxref("TypedArray.prototype.join()")}} | ||
- {{jsxref("TypedArray.prototype.toLocaleString()")}} | ||
- {{jsxref("Array.prototype.toString()")}} | ||
- {{jsxref("String.prototype.toString()")}} |