Question: Which choice is valid example for an arrow function?

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

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