This is a JavaScript question.
In ColdFusion, we use arguments.CustID
when referring to CustID
that was passed to a function.
Q: Is there any way in JavaScript to refer to the scope of a parameter so that 6 months from now I know that "This variable is in the arguments scope"?
I'm considering adding arg
to the beginning of my variable names, so that I would have argCustID
.