We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5168312 commit eae2575Copy full SHA for eae2575
README.md
@@ -1148,9 +1148,9 @@ car.save();
1148
```javascript
1149
class Car {
1150
constructor() {
1151
- this.make = 'Honda';
1152
- this.model = 'Accord';
1153
- this.color = 'white';
+ this.make = '';
+ this.model = '';
+ this.color = '';
1154
}
1155
1156
setMake(make) {
@@ -1945,8 +1945,8 @@ class Alpaca {}
1945
const DAYS_IN_WEEK = 7;
1946
const DAYS_IN_MONTH = 30;
1947
1948
-const songs = ['Back In Black', 'Stairway to Heaven', 'Hey Jude'];
1949
-const artists = ['ACDC', 'Led Zeppelin', 'The Beatles'];
+const SONGS = ['Back In Black', 'Stairway to Heaven', 'Hey Jude'];
+const ARTISTS = ['ACDC', 'Led Zeppelin', 'The Beatles'];
1950
1951
function eraseDatabase() {}
1952
function restoreDatabase() {}
0 commit comments