#JavaScript #Declare and call javascript/function/function declare a function 1. function functionName( argument1, argument2, ... ) { // Do Something } 2. var functionName = function( argument1, argument2, ... ) { // Do Something }; call a function functionName( value1, value2, ... ); If you declare a function with Method 1, the function call can be made before the function declaration or after ..