What is the syntax for defining an arrow function?
(parameter) => {code block}
When an arrow function’s body is left without curly braces, what changes in its functionality?
the return statement is not required
How is the value of this determined within an arrow function?
an arrow function captures the this value of the enclosing context instead of creating its own this context. The value of this is defined when it is being defined.