Subj : Function argument name vs. arguments[xx] To : netscape.public.mozilla.jseng From : "Michael Putters" Date : Thu Nov 20 2003 04:43 pm Hi again, and sorry to bother you all again ;p function Square( value ) { System.Print( arguments.length + '\n' ); // works System.Print( arguments[0] + '\n' ); // works System.Print( value + '\n' ); // fails } Ehm.. why? .