What is the syntax for defining an arrow function?
const name = (p1) => code;
or {code with return};When an arrow function’s body is left without curly braces, what changes in its functionality?
you do not need a return statement
How is the value of this determined within an arrow function?
it is the value of the enclosing context- instead of creating its own - gets value of where it was defined - not who calls it