...
/Solution Review: Purify the Function
Solution Review: Purify the Function
This lesson will explain the solution to the problem in the previous lesson.
We'll cover the following...
Solution review #
Press + to interact
const addAndPrint = (a, b) => {const sum = a+b;return sum;};
Explanation #
The solution to this challenge ...