Are you sure you're getting this? Click the correct answer from the options.
Is this a pure function?
JAVASCRIPT
1const multiply = (a,b) => {
2 return a*b;
3}
4console.log(multiply(2,4));
Click the option that best answers the question.
- Yes
- No
Is this a pure function?
1const multiply = (a,b) => {
2 return a*b;
3}
4console.log(multiply(2,4));