JS Coding Questions Logo
JS Coding Questions
#76🎯 Exercise💻 Code

JavaScript Coding Exercise 76

Advertisement

728x90
javascript
1function add(a, b) {
2
3console.log("The input arguments are: ", a, b);
4
5return a + b;
6}

Choose the correct output:

A
Pure function
B
Impure function

Advertisement

Responsive Ad
76of86