Returning
In returning from functions we outline two styles of returning:
- Explicitly which uses the
return
keyword - Implicitly which does not use the
return
keyword
In general the preferred style is to follow the implicit return however both are perfectly acceptable.