console.log in functions with implicit return
When we want to log parameters of a function with an implicit return, instead of converting it to a function with a regular return, we could simply use ||
operator.
calcCircumference = diameter => console.log(diameter) || ( Math.PI * diameter; )