--- 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