Predict the output of the following javascript code
function add(a, b) {
return a + b;
}
Quiz Explanation
The function add(a, b) returns the sum of a and b using the + operator.
function add(a, b) {
return a + b;
}
The function add(a, b) returns the sum of a and b using the + operator.