Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

argument vs parameter

function test( a, b, c ) { // a, b, and c are the parameters
	// code
}; 

test( 1, 2, 3 ); // 1, 2, and 3 are the arguments
 
PREVIOUS NEXT
Tagged: #argument #parameter
ADD COMMENT
Topic
Name
8+5 =