Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
docs:programming:javascript:objects [2007/07/15 22:35] – billh | docs:programming:javascript:objects [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== |
- | * this information was taken from: http:// | + | * objects are created with the " |
- | + | * constructors for objects are simply functions | |
- | ===== An Object ===== | + | * the " |
- | An object is a collection of properties. These properties | + | * property variables |
+ | ===== Creating an object ===== | ||
+ | ===== using Object() ===== | ||
<code javascript> | <code javascript> | ||
- | var Image1 | + | var dog = new Object(); |
- | Image1.src = "myDog.gif"; | + | dog.name = "fido"; |
+ | dog.weight = 50; | ||
+ | dog.color = "Brown"; | ||
</ | </ | ||
- | you have in fact created | + | ===== using a constructor ===== |
<code javascript> | <code javascript> | ||
- | function | + | function |
} | } | ||
- | var myObject | + | var dog = new animal(); |
- | alert(typeof myObject); | + | |
</ | </ | ||
- | We've just created out own object. In fact we've created a myFunc object. myFunc() is a constructor | + | ===== using a constructor with arguments ===== |
<code javascript> | <code javascript> | ||
- | function | + | function |
- | return 5; | + | this.name = name; |
+ | this.weight = weight; | ||
+ | this.color = color; | ||
} | } | ||
- | var myObject | + | var dog = new animal(" |
- | alert(typeof myObject); // displays " | + | |
</ | </ | ||
- | In this case, we've assigned 5 to myObject. So, what's the difference between these two scripts? Answer: the new keyword. It tells JavaScript to create an object following the blueprint set forth in the myFunc() constructor function. In fact, when we create an Image object, we do the same thing, except that instead of using our own constructor function, we use one of JavaScript' | + | ===== using shortcut brackets |
- | + | ||
- | So far, we've learned how to create a constructor function, and how to create an object from that constructor function. In our example, we've created a myFunc() constructor and created an instance of the myFunc object, which we assigned to the variable myObject. | + | |
- | + | ||
- | This is all fine and dandy, but what's the point? Well, just like our Image object, myObject can be assigned properties: | + | |
- | + | ||
- | <code javascript> | + | |
- | function myFunc(){ | + | |
- | } | + | |
- | + | ||
- | var myObject | + | |
- | myObject.StringValue | + | |
- | alert(myObject.StringValue); | + | |
- | </ | + | |
- | + | ||
- | And voila, we've now created a property for our object. However, if we create another instance of the myFunc object (using the myFunc() constructor function), we also have to assign the StringValue property to this new instance. For example: | + | |
- | + | ||
- | <code javascript> | + | |
- | function myFunc(){ | + | |
- | } | + | |
- | + | ||
- | var myObject | + | |
- | myObject.StringValue | + | |
- | var myObject2 | + | |
- | alert(myObject2.StringValue); | + | |
- | </ | + | |
- | + | ||
- | So, how can we create properties that exist for all myFunc objects? Within the myFunc() constructor function, we can do just that. The this keyword inside a constructor function refers to the object that's being created. Example: | + | |
- | + | ||
- | <code javascript> | + | |
- | function myFunc(){ | + | |
- | | + | |
- | } | + | |
- | + | ||
- | var myObject = new myFunc(); | + | |
- | var myObject2 = new myFunc(); | + | |
- | alert(myObject2.StringValue); | + | |
- | </ | + | |
- | + | ||
- | Now, all myFunc objects will have a StringValue property, assigned with the initial value of "This is a String", | + | |
- | + | ||
- | <code javascript> | + | |
- | function myFunc(){ | + | |
- | | + | |
- | } | + | |
- | + | ||
- | var myObject = new myFunc(); | + | |
- | myObject.StringValue = "This is myObject' | + | |
- | var myObject2 = new myFunc(); | + | |
- | alert(myObject.StringValue); | + | |
- | alert(myObject2.StringValue); | + | |
- | </ | + | |
- | + | ||
- | We can also achieve similar results if we pass arguments to our constructor function: | + | |
- | + | ||
- | <code javascript> | + | |
- | function myFunc(StringValue){ | + | |
- | | + | |
- | } | + | |
- | + | ||
- | var myObject = new myFunc(" | + | |
- | var myObject2 = new myFunc(" | + | |
- | alert(myObject.StringValue); | + | |
- | alert(myObject2.StringValue); | + | |
- | </ | + | |
- | + | ||
- | In the myFunc() constructor, | + | |
- | + | ||
- | ===== Object Methods ===== | + | |
- | In addition to properties, objects can have methods. An object' | + | |
- | + | ||
- | <code javascript> | + | |
- | function Circle(radius){ | + | |
- | | + | |
- | } | + | |
- | + | ||
- | var bigCircle = new Circle(100); | + | |
- | var smallCircle = new Circle(2); | + | |
- | </ | + | |
- | + | ||
- | Now, let's define some functions that we might use: | + | |
- | + | ||
- | <code javascript> | + | |
- | function getArea(){ | + | |
- | | + | |
- | } | + | |
- | + | ||
- | function getCircumference(){ | + | |
- | var diameter = this.radius*2; | + | |
- | var circumference = diameter*3.14; | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | Note that if you were going for accuracy, you could use Math.PI instead of 3.14, but we'll use this simplified representation of pi to keep the numbers in our examples nice and round. | + | |
- | + | ||
- | These functions are easy, except for one thing: what does this.radius refer to? this always refers to the current object, in this case, the Circle object. So this.radius refers to the radius property of the Circle object. So, how do we attach these functions to our object? It's not as hard as you might think. Let's change our Circle() constructor: | + | |
- | + | ||
- | <code javascript> | + | |
- | function Circle(radius){ | + | |
- | | + | |
- | | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | The above assigns the functions getArea and getCircumference to our Circle object, making them methods—functions belonging to our Circle object. We can use methods just like any normal function, but we must first access the object in which the method is encapsulated: | + | |
- | + | ||
- | <code javascript> | + | |
- | alert(bigCircle.getArea()); | + | |
- | alert(bigCircle.getCircumference()); | + | |
- | alert(smallCircle.getArea()); | + | |
- | alert(smallCircle.getCircumference()); | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | ===== Keeping Things Tidy ===== | + | |
- | Let's say we want to keep all our properties and methods in the same place - in the Circle() constructor function. There are many ways to do this. Let's first examine inner functions. An inner function is a function within a function (say that sentence quickly ten times!). Here's what they let us do: | + | |
- | + | ||
- | <code javascript> | + | |
- | function Circle(radius){ | + | |
- | | + | |
- | | + | |
- | } | + | |
- | | + | |
- | var diameter = this.radius*2; | + | |
- | var circumference = diameter*3.14; | + | |
- | | + | |
- | } | + | |
- | this.radius = radius; | + | |
- | this.getArea = getArea; | + | |
- | this.getCircumference = getCircumference; | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | It's the same code, except that we've moved the functions. Now, inside our two functions, instead of this.radius, | + | |
- | + | ||
- | <code javascript> | + | |
- | function Circle(radius){ | + | |
- | | + | |
- | | + | |
- | } | + | |
- | | + | |
- | var diameter = radius*2; | + | |
- | var circumference = diameter*3.14; | + | |
- | | + | |
- | } | + | |
- | | + | |
- | | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | Ok, now let's change the radius of an object and get its area: | + | |
- | + | ||
- | <code javascript> | + | |
- | bigCircle.radius=50; | + | |
- | alert(bigCircle.getArea()); | + | |
- | </ | + | |
- | + | ||
- | But wait! It returns 31400, rather than the expected 7850. What's wrong? Well, radius refers to the value we passed to the Circle() constructor function, not the value of the object. So when we change the object' | + | |
- | + | ||
- | Ok, so now we've created a self-contained object constructor - the function that defines an object. Let's look at another way we can create functions inside our Circle() constructor: | + | |
- | + | ||
- | <code javascript> | + | |
- | function Circle(radius){ | + | |
- | | + | |
- | | + | |
- | | + | |
- | } | + | |
- | | + | |
- | var diameter = this.radius*2; | + | |
- | var circumference = diameter*3.14; | + | |
- | | + | |
- | } | + | |
- | } | + | |
- | + | ||
- | var bigCircle = new Circle(100); | + | |
- | var smallCircle = new Circle(2); | + | |
- | + | ||
- | alert(bigCircle.getArea()); | + | |
- | alert(smallCircle.getCircumference()); | + | |
- | </ | + | |
- | + | ||
- | Here, we've encountered another way to define a function. We can use: | + | |
- | + | ||
- | <code javascript> | + | |
- | functionName = function([parameters]){ | + | |
- | // function body | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | In this way, we can create parameters: | + | |
- | + | ||
- | <code javascript> | + | |
- | functionName = function(parameter1, | + | |
- | // | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | While functions aren't created this way very often, when we're creating objects, they can be useful shortcuts. These processes also help avoid conflicts with function names. For instance, another object can have a different function with the same name, for example getArea(), without causing a conflict. This is possible because these functions are encapsulated inside an object constructor. | + | |
- | + | ||
- | ===== Object Categories ===== | + | |
- | * There are three object categories in JavaScript: Native Objects, Host Objects, and User-Defined Objects. | + | |
- | * Native objects are those objects supplied by JavaScript. Examples of these are String, Number, Array, Image, Date, Math, etc. | + | |
- | * Host objects are objects that are supplied to JavaScript by the browser environment. Examples of these are window, document, forms, etc. | + | |
- | * And, user-defined objects are those that are defined by you, the programmer. | + | |
- | + | ||
- | A fundamental concept in JavaScript is that every element that can hold properties and methods is an object, except for the primitive data types. We can use JavaScript' | + | |
- | + | ||
- | <code javascript> | + | |
- | var Image1 = new Image(50, | + | |
- | Image1.src = " | + | |
- | </ | + | |
- | + | ||
- | Here we've created a new Image object using the native Image() constructor function with the following properties: | + | |
- | + | ||
- | * width = 50 | + | |
- | * height = 100 | + | |
- | * src = " | + | |
- | + | ||
- | JavaScript also includes an Object() constructor function that can be used to define a new Object object: | + | |
- | + | ||
- | <code javascript> | + | |
- | var myObj = new Object(); | + | |
- | </ | + | |
- | + | ||
- | To that "base Object", | + | |
- | + | ||
- | Let's review a String primitive data type: | + | |
- | + | ||
- | <code javascript> | + | |
- | var myString = "This is my string"; | + | |
- | alert(myString); | + | |
- | alert(typeof myString); // displays " | + | |
- | </ | + | |
- | + | ||
- | However, we can even make a String an object, by using its constructor function: | + | |
- | + | ||
- | <code javascript> | + | |
- | var myString = new String(" | + | |
- | alert(myString); | + | |
- | alert(typeof myString); // displays " | + | |
- | </ | + | |
- | + | ||
- | Now we've created a String object. We can also do the same with Number and Boolean. But why would we want to? Well, once we've done that, we can add distinctive properties and methods to that object. A primitive data type contains the properties and methods laid out in its object constructor, | + | |
- | + | ||
- | <code javascript> | + | |
- | var myNumber = new Number(2); | + | |
- | myNumber.doubleIt = new Function(" | + | |
- | alert(myNumber.doubleIt()); | + | |
- | alert(typeof myNumber); // displays " | + | |
- | </ | + | |
- | + | ||
- | So, we just created a new Number object, and then we defined a method for it, doubleIt(). Note that typeof myNumber is " | + | |
- | + | ||
- | Also, in the example above, we've in fact created another object - a Function object. However, the Function object is different. When we create an object, we first enter the new keyword, then follow it with the object constructor function, and this returns a new instance of that particular object. Then, using the returned value (which we usually assign to a variable), we can add properties and methods to that object. However, because a Function object is also a callable block of code, JavaScript makes the distinction and tells us that it's not only an object (which it is, as we can add properties and methods to it), but is also a callable block of code. So, when we enter: | + | |
- | + | ||
- | <code javascript> | + | |
- | alert(typeof myNumber.doubleIt) // displays " | + | |
- | </ | + | |
- | + | ||
- | it displays " | + | |
- | + | ||
- | <code javascript> | + | |
- | var myFunc = new Function(" | + | |
- | " | + | |
- | </ | + | |
- | + | ||
- | Now we can call that function and specify three arguments: | + | |
- | + | ||
- | <code javascript> | + | |
- | myFunc(" | + | |
- | </ | + | |
- | + | ||
- | ===== Function Objects ===== | + | |
- | JavaScript' | + | |
- | + | ||
- | <code javascript> | + | |
- | function myFuncObj(){} | + | |
- | myFuncObj.someVariable = " | + | |
- | alert(myFuncObj.someVariable) // displays " | + | |
- | </ | + | |
- | + | ||
- | Even without the new keyword, Function() creates an object, capable of containing properties and methods. Note that the Function() constructor is a special case – all other constructors must be called with the new keyword, or they simply return a value, instead of a new object. | + | |
- | + | ||
- | Let's look at a String primitive data type vs. a String object: | + | |
- | + | ||
- | <code javascript> | + | |
- | var pimitiveString1 = "This is a primitive string"; | + | |
- | var pimitiveString2 = String(" | + | |
- | var stringObject = new String(" | + | |
- | + | ||
- | primitiveString1.prop = "This is a property"; | + | |
- | primitiveString2.prop = "This is a property"; | + | |
- | stringObject.prop = "This is a property"; | + | |
- | + | ||
- | alert(primitiveString1.prop) // displays " | + | |
- | alert(primitiveString2.prop) // displays " | + | |
- | alert(stringObject.prop) // displays "This is a property" | + | |
- | + | ||
- | alert(typeof primitiveString1); | + | |
- | alert(typeof primitiveString2); | + | |
- | alert(typeof stringObject) // displays " | + | |
- | </ | + | |
- | + | ||
- | Here you can see that, without the new keyword, we don't create and assign an object to a variable, but instead, we assign the returned value (which is a primitive data type, String) to a variable. You can also see that primitiveString1 and primitiveString2 are not objects, as we cannot assign them properties. Note that primitiveString1/ | + | |
- | + | ||
- | <code javascript> | + | |
- | var x = Date(); | + | |
- | alert(typeof x); // displays " | + | |
- | </ | + | |
- | + | ||
- | No matter how you create a function (there are numerous ways), you'll automatically create an object: | + | |
- | + | ||
- | <code javascript> | + | |
- | var myFuncObj = new Function(); | + | |
- | var myFuncObj = Function(); | + | |
- | var myFuncObj = function(){} | + | |
- | function myFuncObj(){} | + | |
- | </ | + | |
- | + | ||
- | Here, we've examined the different ways to create a Function object that's capable of holding a callable block of code, as well as any disctinct properties or methods. | + | |
- | + | ||
- | ===== In Summary ===== | + | |
- | Before we move on, let's review some key points: | + | |
- | + | ||
- | * In JavaScript, there are five primitive data types: Undefined, Null, Boolean, Number, and String. | + | |
- | * In JavaScript, everything is an object, except for the primitive data types. | + | |
- | * An object is an unordered collection of properties. Properties may represent primitive data types, objects, or Function objects, in which case they are called " | + | |
- | * There are three main object categories in JavaScript: native objects, host objects, and user-defined objects. | + | |
- | * There are many built-in, native objects, such as Object, Image, Date, Option, etc. However, we can also create our own user-defined objects, such as the Circle object. | + | |
- | * An object constructor/ | + | |
- | * To create an instance of an object, we use the keyword " | + | |
- | * Every object method has a variable - this - which refers to the current instance of that object from which the method is called. Example: | + | |
- | * myObj.myFunc() | + | |
- | * yourObj.myFunc() | + | |
- | + | ||
- | In the first example, in myFunc(), the variable this would refer to myObj. However, in the second example, in myFunc(), the variable this would refer to yourObj. | + | |
- | + | ||
- | + | ||
- | ====== Objects (Part 2) ====== | + | |
- | + | ||
- | ===== Arguments ===== | + | |
- | In every function, a private variable -- argument -- is automatically created, holding an array of the arguments passed to the function. For example: | + | |
- | + | ||
- | <code javascript> | + | |
- | function testArg(){ | + | |
- | | + | |
- | | + | |
- | } | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | As demonstrated in the example above, we can access the set of arguments passed when calling a function with the arguments variable that exists in the function' | + | |
- | + | ||
- | Therefore, we can use: | + | |
- | + | ||
- | <code javascript> | + | |
- | testArg(" | + | |
- | " | + | |
- | </ | + | |
- | + | ||
- | ...to get an alert of some of my favorite Web development sites. | + | |
- | + | ||
- | ===== Complex Example ===== | + | |
- | Now that we have a foundation in object-based programming in JavaScript, let's build an intricate object-based example, a library. We’ll just keep track of some basic information, | + | |
- | + | ||
- | <code javascript> | + | |
- | function Person(lastName, | + | |
- | | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | And now, let's create some instances of our Person object: | + | |
- | + | ||
- | <code javascript> | + | |
- | var DnnyGdmn = new Person(" | + | |
- | var DvdFlngn = new Person(" | + | |
- | var TmMyrs = new Person(" | + | |
- | var AlxNkmvsky = new Person(" | + | |
- | </ | + | |
- | + | ||
- | Next, let's create our Book object. Its properties will be: | + | |
- | * title | + | |
- | * pages | + | |
- | * price | + | |
- | * author(s) | + | |
- | + | ||
- | Lastly, we can have multiple authors for the same book, so we need to be able to accept more than one Person object as an author. To do this, we'll create an array to hold each person that wrote the book. | + | |
- | + | ||
- | <code javascript> | + | |
- | function Book(title, pages, price){ | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | } | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | The first part of that code should seem straightforward; | + | |
- | + | ||
- | <code javascript> | + | |
- | this.authors = new Array(arguments.length-3); | + | |
- | </ | + | |
- | + | ||
- | This creates an author property for our Book object. The author property is itself an Array object. When we call our Book() constructor, | + | |
- | + | ||
- | <code javascript> | + | |
- | for(i=0; | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | This code loops through the arguments and assigns them to the Array object. Now, let's see how we can create instances of this Book object: | + | |
- | + | ||
- | <code javascript> | + | |
- | var JavaNut = new Book(" | + | |
- | Nutshell", | + | |
- | var JSTDR = new Book(" | + | |
- | Edition)", | + | |
- | var JSBible = new Book(" | + | |
- | 1200, 49.99, DnnyGdmn); | + | |
- | var DHTMLTDR = new Book(" | + | |
- | Reference", | + | |
- | var JSObj = new Book(" | + | |
- | TmMyrs, AlxNkmvsky); | + | |
- | </ | + | |
- | + | ||
- | Note that we're passing instances of the Person object as the last arguments to create the authors property of the Book object. A key concept in OOP design (as in Relational Database design) is to avoid repetition within data. Therefore, we create one Person object for each distinct author. So, even though David Flanagan may write more than one book, we always refer to the same Person object. Also, if David ever decides to change his first name to " | + | |
- | + | ||
- | Now, let's move on to perhaps the most difficult object constructor, | + | |
- | + | ||
- | <code javascript> | + | |
- | function Library(){ | + | |
- | | + | |
- | | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | The first thing you may notice about this function is that it has no parameters. This is because it only accepts Book objects, though we have no idea how many. It creates a property of the Library object, books, which stores an Array of Book objects. Let's say we wanted to access a book's first-listed author. We could use: | + | |
- | + | ||
- | <code javascript> | + | |
- | this.books[bookIndex].authors[0] | + | |
- | </ | + | |
- | + | ||
- | We first access the Library’s book property, which is an Array object. Then, we access a specific Book object. From that Book object, we access its authors property, which is an array. Lastly, we access a specific Person object. And from there, we could go on to access that Person object’s firstName or lastName property. Note that bookIndex is the index of the book we want to access. | + | |
- | + | ||
- | Now, that's the only property that our Library object will contain. The rest will be methods: | + | |
- | + | ||
- | <code javascript> | + | |
- | this.totalPrice = function(){ | + | |
- | var totalCost = 0; | + | |
- | | + | |
- | | + | |
- | } | + | |
- | return totalCost; | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | This method loops through our books property, which is an Array object, takes the price of each Book object and adds it up, and finally returns the value. | + | |
- | + | ||
- | <code javascript> | + | |
- | this.averagePrice = new Function(" | + | |
- | ()/ | + | |
- | </ | + | |
- | + | ||
- | This method takes the total price of all of our books and divides it by the number of books we have, to find out the average price of our books. So, once we create a Library object, how do we add more books to it? We're going to have to create another function: | + | |
- | + | ||
- | <code javascript> | + | |
- | this.addBook = new Function(" | + | |
- | </ | + | |
- | + | ||
- | This uses the Array' | + | |
- | + | ||
- | <code javascript> | + | |
- | this.getAuthors = function(){ | + | |
- | var toSay = "Your favorite authors are: | + | |
- | </ | + | |
- | + | ||
- | This creates a method we'll use to retrieve the list of authors. The toSay variable will hold the string of what this method returns. | + | |
- | + | ||
- | <code javascript> | + | |
- | for(i=0; | + | |
- | | + | |
- | j++){ | + | |
- | var authName = | + | |
- | | + | |
- | | + | |
- | </ | + | |
- | + | ||
- | This portion of the code loops through all the books, and then loops through all the authors of that book, placing their names in the authName variable. | + | |
- | + | ||
- | <code javascript> | + | |
- | if(toSay.indexOf(authName)!=-1) continue; | + | |
- | | + | |
- | </ | + | |
- | + | ||
- | If this author is already in the toSay variable, we don't want to add him again, so we continue to loop through the authors of this book. However, if the author is not yet listed, we can go ahead and add him or her to the toSay variable. | + | |
- | + | ||
- | <code javascript> | + | |
- | } | + | |
- | } | + | |
- | | + | |
- | } | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | That closes the two for loops we had open, and returns the toSay variable. It also closes out the method we've been defining, getAuthors(), | + | |
- | + | ||
- | <code javascript> | + | |
- | // define our Person() constructor | + | |
- | function Person(lastName, | + | |
- | | + | |
- | | + | |
- | } | + | |
- | // define our Book() constructor | + | |
- | function Book(title, pages, price){ | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | } | + | |
- | } | + | |
- | //define our Library() constructor | + | |
- | function Library(){ | + | |
- | | + | |
- | | + | |
- | | + | |
- | } | + | |
- | + | ||
- | | + | |
- | var totalCost = new Number(0); | + | |
- | | + | |
- | | + | |
- | } | + | |
- | | + | |
- | } | + | |
- | + | ||
- | | + | |
- | this.totalPrice()/ | + | |
- | + | ||
- | | + | |
- | Function(" | + | |
- | + | ||
- | | + | |
- | var toSay = "Your favorite authors are: | + | |
- | for i=0; | + | |
- | | + | |
- | var authName = | + | |
- | | + | |
- | | + | |
- | | + | |
- | 1)continue; | + | |
- | | + | |
- | } | + | |
- | } | + | |
- | | + | |
- | } | + | |
- | } | + | |
- | // create some Person objects | + | |
- | DnnyGdmn = new Person(" | + | |
- | DvdFlngn = new Person(" | + | |
- | TmMyrs = new Person(" | + | |
- | AlxNkmvsky = new Person(" | + | |
- | // create some Book objects | + | |
- | | + | |
- | Nutshell", | + | |
- | JSTDR = new Book(" | + | |
- | Edition)", | + | |
- | | + | |
- | Edition", | + | |
- | | + | |
- | Reference", | + | |
- | JSObj = new Book(" | + | |
- | Objects", | + | |
- | // create a Library object | + | |
- | myLib = new Library(JavaNut, | + | |
- | </ | + | |
- | + | ||
- | Oops, we left out the JavaScript Objects book. We'd better add it: | + | |
- | + | ||
- | <code javascript> | + | |
- | myLib.addBook(JSObj); | + | |
- | </ | + | |
- | + | ||
- | Now, we can get the information, | + | |
- | + | ||
- | ===== Prototype ===== | + | |
- | Every object constructor has a special property, prototype. This property allows you to add properties/ | + | |
- | + | ||
- | <code javascript> | + | |
- | function Square(){ | + | |
- | } | + | |
- | var squareObj = new Square(); | + | |
- | Square.prototype.side = 5; | + | |
- | var squareObj2 = new Square(); | + | |
- | alert(squareObj.side); | + | |
- | alert(squareObj2.side); | + | |
- | </ | + | |
- | + | ||
- | What this does is add a side property, with an initial value of 5, to all Square objects, whether they' | + | |
- | + | ||
- | <code javascript> | + | |
- | function Square(){ | + | |
- | | + | |
- | } | + | |
- | var squareObj = new Square(); | + | |
- | Square.prototype.side = 4; | + | |
- | var squareObj2 = new Square(); | + | |
- | alert(squareObj.side); | + | |
- | alert(squareObj2.side); | + | |
- | </ | + | |
- | + | ||
- | returns 5, because everything in the prototype object loads first (before the Square() object constructor even runs), so the properties and methods defined in the constructor will override it. So, with the prototype property, you can't override any properties or methods defined in an object' | + | |
- | + | ||
- | <code javascript> | + | |
- | function consonantize(){ | + | |
- | var consonants =""; | + | |
- | | + | |
- | var l = this.charAt(i); | + | |
- | | + | |
- | | + | |
- | "){ | + | |
- | | + | |
- | } | + | |
- | } | + | |
- | | + | |
- | } | + | |
- | </ | + | |
- | + | ||
- | The above function goes through a string and removes all vowels and spaces, returning only consonants. Now, we can use it on any String object, or any String primitive datum: | + | |
<code javascript> | <code javascript> | ||
- | String.prototype.consonantize = consonantize; | + | var dog = {name:"fido", weight:50, color:"Brown}; |
- | var dg = "Danny Goodman"; | + | |
- | var df = new String("David Flanagan"); | + | |
- | alert(dg.consonantize()); | + | |
- | alert(df.consonantize()); | + | |
</ | </ | ||
- | Neat, huh? Note how the new method, just like other String methods, can be used by a String object or by a String primitive data type. Therefore, by using an object constructor' | + | ===== See Also ===== |
+ | * [[copy | ||