September 2, 2006

links for 2006-09-02

Filed under: Bookmarks | Lindsay @ 12:20 pm
  • 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