OMENSAH
2/7/2018 - 9:13 PM

exportDefault^.js

export class Vehicle {
  constructor(made, color){
    this.made = made;
    this._color = color;
  }
  set color(value){
    this._color = value;
  }
  
  get color() {
   return this._color
  }
}