what is function, argument and parameters ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

what is function, argument and parameters ?

function is a most important of a program

21st Sep 2017, 9:17 PM
md mamun ahmed raj
md mamun ahmed raj - avatar
1 Answer
0
A function is a block of statements that can be used repeatedly in a program. A function will not execute immediately when a page loads. It will be executed by a call to the function. A user defined function declaration starts with the word function: Information can be passed to functions through arguments, which are like variables. Arguments are specified after the function name, and within the parentheses. Here, our function takes a number, multiplies it by two, and prints the result: Default arguments can be defined for the function arguments. In the example below, we're calling the function setCounter(). There are no arguments, so it will take on the default values that have been defined.
21st Sep 2017, 9:31 PM
md mamun ahmed raj
md mamun ahmed raj - avatar