18 lines
397 B
JavaScript
18 lines
397 B
JavaScript
|
|
||
|
var Person = makeClass(
|
||
|
/** @lends Person# */
|
||
|
{
|
||
|
/** Construct a Person.
|
||
|
@constructs Person
|
||
|
*/
|
||
|
initialize: function(name) {
|
||
|
/** The name of the person. */
|
||
|
this.name = name;
|
||
|
},
|
||
|
|
||
|
/** Speak a message. */
|
||
|
say: function(message) {
|
||
|
return this.name + " says: " + message;
|
||
|
}
|
||
|
}
|
||
|
);
|