I just have a small question that I would like some clarification about, if I have created a function that is set up to accept 2 parameters and then perform some calculation but then I realise that the function I have created could also be used in another part of my code but will need to accept an additional parameter, how can use the function but pass in an additional parameter?
Regards
Kyle
You basically create a function function with any number of parameters and call them by passing any number of parameters.
For example:
You can create a calculator like below