Answers for "argument vs parameter javascript"

4

argument vs parameter javascript

var foo = function( a, b, c ) {}; // a, b, and c are the parameters

foo( 1, 2, 3 ); // 1, 2, and 3 are the arguments
Posted by: Guest on January-19-2021

Code answers related to "argument vs parameter javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language