# Constructor 构造器

function Car(model, year, miles) {
  this.model = model
  this.year = year
  this.miles = miles
}
Car.prototype.toString = function () {
  return this.model + 'has done ' + this.miles + ' miles'
}
1
2
3
4
5
6
7
8