이 메소드는 객체의 소스 코드를 나타내는 문자열을 반환합니다.
참고: 이 방법은 IE와 같은 모든 브라우저에서 제대로 작동하지 않을 수 있습니다.
문법
Date.toSource()
매개변수의 세부정보는 다음과 같습니다.
반환 값:
예:
<html> <head> <title>JavaScript toSource Method</title> </head> <body> <script type="text/javascript"> var dt = new Date(1993, 6, 28, 14, 39, 7); document.write( "Formated Date : " + dt.toSource() ); </script> </body> </html>
이렇게 하면 다음과 같은 결과가 나타납니다.
Formated Date : (new Date(743850547000))