Love beautiful code? We do too.
Phương thức Boolean toSource() trong JavaScript trả về một chuỗi biểu diễn code nguồn của đối tượng.
Ghi chú − Phương thức này không tương thích với tất cả trình duyệt.
Cú pháp của nó như sau:
boolean.toSource()
Trả về giá trị
Bạn thử ví dụ sau:
<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>
Kết quả
({title:"Perl", publisher:"Leo Inc", price:200})
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời