Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

我们的志愿者还没有将这篇文章翻译为 中文 (简体)加入我们帮助完成翻译!

A parameter is a named variable passed into a function. Parameter variables are used to import arguments into functions.

Note the difference between parameters and arguments:

  • Function parameters are the names listed in the function's definition.
  • Function arguments are the real values passed to the function.
  • Parameters are initialized to the values of the arguments supplied.

Two kinds of parameters:

input parameters
the most common kind; they pass values into functions. Depending on programming language, input parameters can be passed several ways (e.g., call-by-value, call-by-address, call-by-reference).
output/return parameters
primarily return multiple values from a function, but not recommended since they cause confusion

Learn more

General knowledge

Technical reference

文档标签和贡献者

 此页面的贡献者: klez, Andrew_Pfeiffer, Jeremie, jXavier, ajain64, geordanny
 最后编辑者: klez,