Argument

garanews's avatar
Published Apr 23, 2021Updated Oct 26, 2022
Contribute to Docs

An argument is the actual value of a variable (aka. the parameter) passed into a function.

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Front-end engineers work closely with designers to make websites beautiful, functional, and fast.
    • Includes 34 Courses
    • With Professional Certification
    • Beginner Friendly.
      115 hours

Example

Suppose we have a function called tripleThis():

function tripleThis(x) {
return x * 3;
}
tripleThis(6);

The parameter is x since it is the variable. The argument is 6 since it is the actual value.

All contributors

Contribute to Docs

Learn General on Codecademy

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Front-end engineers work closely with designers to make websites beautiful, functional, and fast.
    • Includes 34 Courses
    • With Professional Certification
    • Beginner Friendly.
      115 hours