blob: 27d2453fd8020786aa0b406b3f629e31a1b9cc26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
---
title: String.prototype.toString()
slug: Web/JavaScript/Reference/Global_Objects/String/toString
tags:
- JavaScript
- Method
- Prototype
- Reference
- String
translation_of: Web/JavaScript/Reference/Global_Objects/String/toString
browser-compat: javascript.builtins.String.toString
---
{{JSRef}}
**`toString()`** 메서드는 객체의 문자열 표현을 반환합니다.
{{EmbedInteractiveExample("pages/js/string-tostring.html")}}
## 구문
```js
toString()
```
### 반환 값
메서드를 호출하는 객체의 문자열 표현.
## 설명
{{jsxref("String")}} 객체는 {{jsxref("Object")}} 객체의 `toString()` 메서드를 상속하지 않고 재정의합니다. {{jsxref("String")}} 의 `toString()` 메서드는 객체의 문자열 표현을 반환하며 {{jsxref("String.prototype.valueOf()")}} 메서드와 동일합니다.
## 예제
### `toString()` 사용하기
{{jsxref("String")}} 객체의 문자열 값을 표시하는 예제입니다.
```js
var x = new String('Hello world')
console.log(x.toString()) // logs 'Hello world'
```
## 명세
{{Specifications}}
## 브라우저 호환성
{{Compat}}
## 같이 보기
- {{jsxref("String.prototype.valueOf()")}}
|