JavaScript Boolean.toSource() 메소드는 객체의 소스 코드를 나타내는 문자열을 반환합니다.
참고: 이 방법은 Internet Explorer에서는 작동하지 않습니다.
문법
boolean.toSource()
매개변수의 세부정보는 다음과 같습니다.
반환값
객체의 소스 코드를 나타내는 문자열을 반환합니다.
예:
<html> <head> <title>JavaScript toSource() Method</title> </head> <body> <script type="text/javascript"> function book(title, publisher, price) { this.title = title; this.publisher = publisher; this.price = price; } var newBook = new book("Perl","Leo Inc",200); document.write(newBook.toSource()); </script> </body> </html>
이렇게 하면 다음과 같은 결과가 나타납니다.
({title:"Perl", publisher:"Leo Inc", price:200})