As per [request here](https://github.com/brianchandotcom/liferay-portal/pull/86310#issuecomment-599626165). > In short, if you declare a var, add a line break before using it. This shows order of requirements better. Some (contrived) examples of correct code: ```js const thing = getThing(); thing.publish(); ``` ```js const items = getItems(); const reversedItems = items.reverse(); print(reversedItems); ``` ```js const firstName = 'Jane'; const secondName = 'Smith'; const full name = [firstName, secondName].join(' '); ```