Run prettier

This commit is contained in:
Charles-Axel Dein 2020-07-21 12:08:46 +02:00
parent b01bf027b1
commit 14bda3cae3
1 changed files with 2 additions and 2 deletions

View File

@ -134,14 +134,14 @@ const es5Object = {
console.log("hello");
},
};
es5Object.say()
es5Object.say();
const es6Object = {
say() {
console.log("hello");
},
};
es6Object.say()
es6Object.say();
```
### Array