Function parameters are placeholders for function data inputs. We can use them to represent values given to the function at the time of the function call.
Functions that don’t take parameters will return the same value. Without parameters, the return value of a function is not mutable.
If we give parameters to a function, anytime we call it, we can pass in different arguments to it and get a different result.