The Book Object Definition : Objects Object Oriented « Language Basics « JavaScript DHTML






The Book Object Definition

 
<script type="text/javascript">
<!--
  function book(title, author, subject, rating) {    
    this.title = title;
    this.author = author;
    this.subject = subject;
    this.rating = rating;
    this.show = show;
  }
  function show() {
    alert(this.title + this.author + this.subject + this.rating);
  }
//-->
</script>


           
         
  








Related examples in the same category

1.Object utility: create, parse and profile
2.Define Object, use its instance
3.Define and use object
4. Creating an Object and Using Object Instance Properties and Methods
5. Object-Oriented Planetary Data Presentation
6.Complete Example of Using the employee, client, and project Objects
7.Source Code for the showBook() Example
8.Using the Book Object Constructor
9.Creating Objects Dynamically
10.Object to array
11.Utility class for JavaScript class definition
12.Create an object and add attributes
13.Use for in loop to display all attributes from an object
14.Display the properties from an object one by one
15.An object and its constructor
16.Use function as the object constructor