links for 2006-09-02
-
For some reason this syntax is easy to forget.
Suppose you want to create a function that accepts string arguments and prints them with a line break after each one. Since the number of arguments is not known, the only way to handle this situation is th
-
Interesting that the arguments can linger between calls if they’re not replaced. Don’t forget to set arguments.length = 0; before leaving the function so that they are not reused on the next call.
The
functionName
.
arguments
array holds t










