Ad
  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    I think you solved the exercise as intendid.

    I was a bit consfused by this at first but after some exploring I think I get it now.

    When you did
    HumanSkin.prototype = new Cylon()
    You created a property for all new HumanSkins called model. But since you never passed a model to
    the new Cylon() you were inheriting from, model was left as undefined. Therefor you had to define a model of your own
    within HumanSkin.

    I hope that makes sense. Anybody, please correct me if I'm wrong.