File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1148,9 +1148,9 @@ car.save();
1148
1148
``` javascript
1149
1149
class Car {
1150
1150
constructor () {
1151
- this .make = ' Honda ' ;
1152
- this .model = ' Accord ' ;
1153
- this .color = ' white ' ;
1151
+ this .make = ' ' ;
1152
+ this .model = ' ' ;
1153
+ this .color = ' ' ;
1154
1154
}
1155
1155
1156
1156
setMake (make ) {
@@ -1945,8 +1945,8 @@ class Alpaca {}
1945
1945
const DAYS_IN_WEEK = 7 ;
1946
1946
const DAYS_IN_MONTH = 30 ;
1947
1947
1948
- const songs = [' Back In Black' , ' Stairway to Heaven' , ' Hey Jude' ];
1949
- const artists = [' ACDC' , ' Led Zeppelin' , ' The Beatles' ];
1948
+ const SONGS = [' Back In Black' , ' Stairway to Heaven' , ' Hey Jude' ];
1949
+ const ARTISTS = [' ACDC' , ' Led Zeppelin' , ' The Beatles' ];
1950
1950
1951
1951
function eraseDatabase () {}
1952
1952
function restoreDatabase () {}
You can’t perform that action at this time.
0 commit comments