Arrow Functions

Functions can be implicitly declared via an arrow- => . If you're passing just 1 parameter, you can drop the parentheses. If your function consists of a single statement, you can drop the "return" statement and curly brackets. If you're passing no parameters, you have to use parentheses.