diff --git a/index.js b/index.js index 28090f12..c6bf2a3b 100644 --- a/index.js +++ b/index.js @@ -81,7 +81,7 @@ class Seasons { * seasons.next() // returns "summer" */ next() { - // ✨ implement + // ✨ implements } } @@ -93,8 +93,8 @@ class Car { * @param {number} mpg - miles the car can drive per gallon of gas */ constructor(name, tankSize, mpg) { - this.odometer = 0 // car initilizes with zero miles - this.tank = tankSize // car initiazes full of gas + this.odometer = 0; // car initilizes with zero miles + this.tank = tankSize; // car initiazes full of gas // ✨ initialize whatever other properties are needed } @@ -162,4 +162,4 @@ module.exports = { Counter, Seasons, Car, -} +};