+ 1
What's an argument?
Are they same as values
1 Resposta
+ 2
An argument specifically refers to values PASSED TO FUNCTIONS.
You define all the arguments of a function in the brackets following the function name:
function add (x, y) {
return x + y;
}
x and y are arguments to the function 'add'.