What is the syntax for defining an arrow function?
let varname = () => code block;
When an arrow function’s body is left without curly braces, what changes in its functionality?
It doesnt need return statement
How is the value of this determined within an arrow function?
this is defined by where the function is defined (in the lexical scope)