Kaedah JavaScript Boolean.toSource() mengembalikan rentetan yang mewakili kod sumber objek.
Nota: Kaedah ini tidak akan berfungsi dalam Internet Explorer.
Tatabahasa
boolean.toSource()
Berikut ialah butiran parameter:
Nilai pulangan
Mengembalikan rentetan yang mewakili kod sumber objek.
Contoh:
<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>
Ini akan menghasilkan keputusan berikut:
({title:"Perl", publisher:"Leo Inc", price:200})