We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cb7d33 commit 8b12794Copy full SHA for 8b12794
1 file changed
1-js/09-classes/02-class-inheritance/2-clock-class-extended/solution.view/extended-clock.js
@@ -1,7 +1,7 @@
1
class ExtendedClock extends Clock {
2
constructor(options) {
3
super(options);
4
- let { precision=1000 } = options;
+ let { precision = 1000 } = options;
5
this.precision = precision;
6
}
7
0 commit comments