Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Latest commit

 

History

History
11 lines (7 loc) · 621 Bytes

named_parameters.md

File metadata and controls

11 lines (7 loc) · 621 Bytes

Named Parameters

In computer programming, named parameters, named argument or keyword arguments refer to a computer language's support for function calls that clearly state the name of each parameter within the function call.

A function call using named parameters differs from a regular function call in that the values are passed by associating each one with a parameter name, instead of providing an ordered list of values.1


[1] Named parameters, Wikipedia. (2020). https://en.wikipedia.org/wiki/Named_parameter (accessed September 3, 2020).