From b79487216fdb77799f088270ae9a2b96dacf2dec Mon Sep 17 00:00:00 2001 From: Onaje Oladuwa <onaje.oladuwa@gmail.com> Date: Thu, 15 Jul 2021 21:51:57 -0400 Subject: [PATCH] submit --- index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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, -} +};