Skip to content

Commit c9a0152

Browse files
committed
Fix question 3
1 parent 3004132 commit c9a0152

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ const shape = {
9292
perimeter: () => 2 * Math.PI * this.radius
9393
};
9494

95-
shape.diameter();
96-
shape.perimeter();
95+
console.log(shape.diameter());
96+
console.log(shape.perimeter());
9797
```
9898

9999
- A: `20` and `62.83185307179586`

0 commit comments

Comments
 (0)