nesting ternaries

PHOTO EMBED

Sun Jul 17 2022 07:14:01 GMT+0000 (Coordinated Universal Time)

Saved by @man_ssorr #javascript

isLogged(user) ? sayHello : ''; // bad

if (isLogged(user)) sayHello; // good
content_copyCOPY

https://dev.to/devsimc/javascript-best-practices-44ll