edabit php problem solving
1.Return the Sum of Two Numbers
Create a function that takes two numbers as arguments and returns their sum.
Output:
addition(3,2) 5
addition(-3,-6) -9
addition(7,3) 10
function addition($a, $b) {
return $a+$b;
}
addition(3,2)
2.Return the Next...
naveenjoshuva.hashnode.dev1 min read