Resultset.prototype

NES3+, ECMAScript1.0+Syntax

							resultset.prototype.method = methodName
							resultset.prototype.property
						

Description

The prototype property of the Resultset object allows you to create new properties and methods of the object. If you are adding a method, set the instance equal to the methodName of the method you have defined.

Example

Listing 8.116 creates a new property and method of the Resultset object. An instance is created and the new property is set. The new method is then called to verify the property, and, if it is incorrect, an error is written to the page.

Listing 8.116 Using the prototype Property to Create a New Property and Method
 <SERVER> // Define the method that we prototyped function verifyWork(){ // Check ...

Get Pure JavaScript now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.