Lines of Code | 12 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | class Duck { |
||
2 | constructor(sound) { |
||
3 | this.sound = sound; |
||
4 | } |
||
5 | |||
6 | quack() { |
||
7 | console.log(this.sound); |
||
|
|||
8 | } |
||
9 | } |
||
10 | |||
11 | const d = new Duck('Quack!'); |
||
12 | d.quack(); |