You could do `someNethod(name = "some name", age =...
# getting-started
a
You could do
someNethod(name = "some name", age = 24, apple = 4)
and use named arguments only for the arguments you care about, and not worry about order, if you wanted to.
👍🏽 1