From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- .../global_objects/string/tosource/index.html | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 files/ko/web/javascript/reference/global_objects/string/tosource/index.html (limited to 'files/ko/web/javascript/reference/global_objects/string/tosource') diff --git a/files/ko/web/javascript/reference/global_objects/string/tosource/index.html b/files/ko/web/javascript/reference/global_objects/string/tosource/index.html new file mode 100644 index 0000000000..d08a2a816a --- /dev/null +++ b/files/ko/web/javascript/reference/global_objects/string/tosource/index.html @@ -0,0 +1,49 @@ +--- +title: String.prototype.toSource() +slug: Web/JavaScript/Reference/Global_Objects/String/toSource +translation_of: Web/JavaScript/Reference/Global_Objects/String/toSource +--- +
{{JSRef}} {{non-standard_header}}
+ +

The toSource() method returns a string representing the source code of the object.

+ +

문법

+ +
String.toSource()
+str.toSource()
+
+ +

리턴 값

+ +

호출한 객체의 소스코드가 string으로 보여집니다.

+ +

설명

+ +

toSource() 메소드는 다음 값을 리턴:

+ +

For the built-in {{jsxref("String")}} object, toSource() returns the following string indicating that the source code is not available:

+ +
function String() {
+    [native code]
+}
+
+ +

For instances of {{jsxref("String")}} or string literals, toSource() returns a string representing the source code.

+ +

This method is usually called internally by JavaScript and not explicitly in code.

+ +

Specifications

+ +

Not part of any standard. Implemented in JavaScript 1.3.

+ +

Browser compatibility

+ + + +

{{Compat("javascript.builtins.String.toSource")}}

+ +

See also

+ + -- cgit v1.2.3-54-g00ecf