mirror of
https://github.com/airbnb/javascript.git
synced 2026-01-13 23:37:55 -05:00
@@ -912,7 +912,13 @@ Other Style Guides
|
||||
const itemHeight = (item) => item.height > 256 ? item.largeSize : item.smallSize;
|
||||
|
||||
// good
|
||||
const itemHeight = (item) => { return item.height > 256 ? item.largeSize : item.smallSize; };
|
||||
const itemHeight = item => (item.height > 256 ? item.largeSize : item.smallSize);
|
||||
|
||||
// good
|
||||
const itemHeight = (item) => {
|
||||
const { height, largeSize, smallSize } = item;
|
||||
return height > 256 ? largeSize : smallSize;
|
||||
};
|
||||
```
|
||||
|
||||
**[⬆ back to top](#table-of-contents)**
|
||||
|
||||
Reference in New Issue
Block a user