-
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] Symbol.prototype.valueOf() 추가 (#18765)
* [ko] Symbol.prototype.valueOf() 추가 - Symbol.prototype.valueOf() 추가 * [ko] 리뷰사항 반영
- Loading branch information
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
53 changes: 53 additions & 0 deletions
53
files/ko/web/javascript/reference/global_objects/symbol/valueof/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,53 @@ | ||
--- | ||
title: Symbol.prototype.valueOf() | ||
slug: Web/JavaScript/Reference/Global_Objects/Symbol/valueOf | ||
l10n: | ||
sourceCommit: 27180875516cc311342e74b596bfb589b7211e0c | ||
--- | ||
|
||
{{JSRef}} | ||
|
||
{{jsxref("Symbol")}} 값의 **`valueOf()`** 메서드는 심볼 값을 반환합니다. | ||
|
||
{{EmbedInteractiveExample("pages/js/symbol-prototype-valueof.html")}} | ||
|
||
## 구문 | ||
|
||
```js-nolint | ||
valueOf() | ||
``` | ||
|
||
### 매개변수 | ||
|
||
없음. | ||
|
||
### 반환 값 | ||
|
||
명시된 {{jsxref("Symbol")}} 객체의 원시 값. | ||
|
||
## 설명 | ||
|
||
{{jsxref("Symbol")}}의 `valueOf()` 메서드는 Symbol 객체의 원시 값을 Symbol 데이터 유형으로 반환합니다. | ||
|
||
JavaScript는 `valueOf()` 메서드를 호출하여 객체를 원시 값으로 변환합니다. 사용자가 직접 `valueOf()` 메서드를 호출할 필요는 거의 없습니다. 원시 값이 예상되는 객체를 만나면 JavaScript가 자동으로 호출합니다. | ||
|
||
## 예제 | ||
|
||
### valueOf() 사용하기 | ||
|
||
```js | ||
const sym = Symbol("example"); | ||
sym === sym.valueOf(); // true | ||
``` | ||
|
||
## 명세서 | ||
|
||
{{Specifications}} | ||
|
||
## 브라우저 호환성 | ||
|
||
{{Compat}} | ||
|
||
## 같이 보기 | ||
|
||
- {{jsxref("Object.prototype.valueOf()")}} |