Every function has these, it is so when you call it, you can pass arguments.
0
They're arguments, not parameters, but you've got the right idea. Parameters are a function's input variables. Arguments are values passed to a function during a function call, and which *get assigned to* parameters.Link1501355— 6y
0
So, basically when defining the function, you have parameters... hmmmpiRadians297— 6y
0
Yes, parameters appear in the parentheses of a function definition, not a function call. e.g, `function add(a, b) return a+b end`. `a` and `b` in this example are parameters, whereas `2` and `3` in `local sum = add(2, 3)` are arguments.Link1501355— 6y