Top "Arguments" questions

An argument is a value passed to a function, procedure, or command line program.

How best to determine if an argument is not sent to the JavaScript function

I have now seen 2 methods for determining if an argument has been passed to a JavaScript function. I'm wondering if …

javascript arguments
Using Default Arguments in a Function

I am confused about default values for PHP functions. Say I have a function like this: function foo($blah, $x = "…

php arguments default
PHP function overloading

Coming from C++ background ;) How can I overload PHP functions? One function definition if there are any arguments, and another …

php arguments overloading
How to pass argument to Makefile from command line?

How to pass argument to Makefile from command line? I understand I can do $ make action VAR="value" $ value with …

command-line parameters makefile arguments
docker build with --build-arg with multiple arguments

According to the documentation, it's possible to define multiple args for the flag --build-arg, but I can't find out how. …

docker build arguments
Netbeans how to set command line arguments in Java

I am trying to set command line arguments in a Netbeans 7.1 Java project on Windows 7 64 bit. Netbeans is not passing …

java netbeans arguments
Angularjs - Pass argument to directive

Im wondering if there is a way to pass an argument to a directive? What I want to do is …

angularjs controller arguments directive
What is the difference between _tmain() and main() in C++?

If I run my C++ application with the following main() method everything is OK: int main(int argc, char *argv[]) { …

c++ unicode arguments
Difference between parameter and argument

Is there a difference between a "parameter" and an "argument", or are they simply synonyms?

language-agnostic parameters arguments terminology
Best way to check function arguments?

I'm looking for an efficient way to check variables of a Python function. For example, I'd like to check arguments …

python function arguments