为了账号安全,请及时绑定邮箱和手机立即绑定

JS面向对象问题的请教!

JS面向对象问题的请教!

ken0510 2016-10-18 11:37:31
// 定义Person构造器function Person(firstName) {  this.firstName = firstName;}Person.prototype.walk = function(){  alert("I am walking!");};Person.prototype.sayHello = function(){  alert("Hello, I'm " + this.firstName);};function Student(firstName, subject) {    Person.call(this, firstName);//  请教 call函数的作用 以及(this,firstname)两个参数的含义   this.subject = subject;};Student.prototype = Object.create(Person.prototype); // 这段不懂 请教
查看完整描述

2 回答

  • 2 回答
  • 1 关注
  • 1219 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信