Run prettier

This commit is contained in:
Charles-Axel Dein 2020-07-21 12:08:46 +02:00
parent b01bf027b1
commit 14bda3cae3

View File

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