Please enable JavaScript.
Coggle requires JavaScript to display documents.
Methods :, Variables and Scope - Coggle Diagram
Methods :
-
-
-
Arguments and Parameters
A parameter is the special kind of variable that is defined in the method header and used inside that method to represent the value that was fed into the method call.
-
Argument can be : (5,6,7) or (num:7, num1:5, num2: 6)
-
-
Parameters
At this point methods become more useful if we allow them to have parameters. A parameter is a means of passing a value into a method call. The method is given the data to work on.
-
Method Libraries
The first thing that a good programmer will do when they start writing code is to create a set of libraries which can be used to make their job easier.
-