Skip to content

Commit 5c99f7c

Browse files
authored
fix: solution 7-35
1 parent 4b408d3 commit 5c99f7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

7-objects/35-dream-car.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const car = {
99
};
1010

1111
if (car.used) {
12-
console.log("I want a " + car.year + " " + car.model + " that is used.");
12+
console.log("I want a " + car.color + " " + car.year + " " + car.model + " that is used.");
1313
} else {
14-
console.log("I want a " + car.year + " " + car.model + " that is new.");
14+
console.log("I want a " + car.color + " " + car.year + " " + car.model + " that is new.");
1515
}

0 commit comments

Comments
 (0)