--- title: String.prototype.toSource() slug: Web/JavaScript/Reference/Global_Objects/String/toSource translation_of: Web/JavaScript/Reference/Global_Objects/String/toSource ---
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.
Not part of any standard. Implemented in JavaScript 1.3.
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
{{Compat("javascript.builtins.String.toSource")}}