I was wondering if my function has several parameters with some default values then when calling the function I will have to the following options.
someMethod("some name", 24, salary = 10 , 4)
someMethod("some name", 24, apple = 4)
That means I have to use named argument if I want to use default value for one var and a different value for other named variable. I was just checking if I understood it correctly.