Code:
<script> var call = new CalendarPopup(); document.write(call); </script>
<script> var call = new CalendarPopup(); document.write(call); </script>
function Book() {
var book = {title: 'Java Book', pages: 6};
this.get_title = function()
this.get_pages = function() {
return
<script>
function Book() {
alert("Hi");
book.title="Java Book";
alert("Outline: " + book.title);
}
Book();
</script>
Leave a comment: