Excerpt from section 7.1 of "JavaScript: The Definitive Guide, 4th Edition":
Note that these parameter variables are defined only while the function is being executed; they do not persist once the function returns.
Is that really true? Does that mean I have to save some parameters to local variables if I intend to use them from within nested functions?