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 functionB
Impure functionAdvertisement
Responsive Ad
76of86
Advertisement
1function add(a, b) {
2
3console.log("The input arguments are: ", a, b);
4
5return a + b;
6}Advertisement