Skip to content

Commit 8b12794

Browse files
authored
⚡ update test
1 parent 1cb7d33 commit 8b12794

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • 1-js/09-classes/02-class-inheritance/2-clock-class-extended/solution.view

1-js/09-classes/02-class-inheritance/2-clock-class-extended/solution.view/extended-clock.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class ExtendedClock extends Clock {
22
constructor(options) {
33
super(options);
4-
let { precision=1000 } = options;
4+
let { precision = 1000 } = options;
55
this.precision = precision;
66
}
77

0 commit comments

Comments
 (0)