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/function/tosource/index.html | 71 ++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 files/ko/web/javascript/reference/global_objects/function/tosource/index.html (limited to 'files/ko/web/javascript/reference/global_objects/function/tosource') diff --git a/files/ko/web/javascript/reference/global_objects/function/tosource/index.html b/files/ko/web/javascript/reference/global_objects/function/tosource/index.html new file mode 100644 index 0000000000..dcfbdf49e6 --- /dev/null +++ b/files/ko/web/javascript/reference/global_objects/function/tosource/index.html @@ -0,0 +1,71 @@ +--- +title: Function.prototype.toSource() +slug: Web/JavaScript/Reference/Global_Objects/Function/toSource +tags: + - JavaScript + - 메소드 + - 함수 +translation_of: Web/JavaScript/Reference/Global_Objects/Function/toSource +--- +
{{JSRef}} {{non-standard_header}}
+ +

toSource() 메소드는 객체의 소스 코드를 나타내는 스트링을 반환합니다.

+ +

구문

+ +
function.toSource();
+
+ +

반환 값

+ +

객체의 소스 코드를 나타내는 스트링.

+ +

설명

+ +

toSource 메소드는 다음 값들을 반환합니다.

+ + + +

이 메소드는 보통 JavaScript 에 의해 내부적으로 호출되며 코드에서 명시적으로 사용되지 않습니다. 디버깅할 때 객체의 컨텐츠를 검사하기 위해 toSource 를 호출해보실 수 있습니다.

+ +

명세

+ +

어떠한 표준의 일부도 아닙니다. JavaScript 1.3 에서 구현되었습니다.

+ +

브라우저 호환성

+ +
+ + +

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

+
+ +

함께 보기

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