mirror of
https://github.com/konvajs/konva.git
synced 2025-10-15 12:34:52 +08:00
18 lines
385 B
JavaScript
18 lines
385 B
JavaScript
/** @class */
|
|
var Person = makeClass(
|
|
/**
|
|
* @lends Person#
|
|
*/
|
|
{
|
|
/** Set up initial values. */
|
|
initialize: function(name) {
|
|
/** The name of the person. */
|
|
this.name = name;
|
|
},
|
|
|
|
/** Speak a message. */
|
|
say: function(message) {
|
|
return this.name + " says: " + message;
|
|
}
|
|
}
|
|
); |