Question: Which choice is a valid example of an arrow function, assuming c is defined in the outer scope?

  1. `a, b => { return c; }`
  2. `a, b => c`
  3. `{ a, b } => c`
  4. `(a,b) => c`

Answer: The correct answer of the above question is Option D:`(a,b) => c`