Discuss / JavaScript / 练习

练习

Topic source

狼叔叔

#1 Created at ... [Delete] [Delete and Lock User]

function Cat(name) { this.name = name; }

Cat.prototype.say = function() { return 'Hello, ' + this.name + '!'; }


  • 1

Reply