What is the syntax for defining an arrow function?
let add =(x , y) => x+y
When an arrow function’s body is left without curly braces, what changes in its functionality?
It doesn’t need the return keyword
How is the value of this determined within an arrow function?
value of this is determined by the outer function