Sum two numbers

Write a function that takes two numbers (a and b) as argument. Sum a and b. Return the result
function
myFunction
(
a, b
)
{

return
}
Test Cases:
myFunction(1,2)
Expected
3
myFunction(1,10)
Expected
11
myFunction(99,1)
Expected
100