Create a function that returns the number of arguments it was called with.
numArgs() ➞ 0 numArgs("foo") ➞ 1 numArgs("foo", "bar") ➞ 2 numArgs(foo: 1, bar: 2) ➞ 2 numArgs() {} ➞ 1