Convert regular functions to arrow functions.
Sample Input:
function(a, b) { return a + b; }Sample Output:
(a, b) => a + b
Hints
Hint 1
Identify the function parameters
Hint 2
Identify the function body
Hint 3
Use arrow function syntax: (params) => body