Tagged with anonymousfunctions

Javascript anonymous functions

Anonymous functions are functions that are dynamically declared at runtime that don’t have to be given a name. Anonymous functions are declared using the function operator. You can use the function operator to create a new function wherever it’s valid to put an expression. For example you could declare a new function as a parameter to [...]
Published in Javascript on Saturday, August 23rd, 2008

How javascript objects work

This is a series of articles about how to use the javascript language features to write object oriented type code. It's designed for people who are already sold on the idea of bundling functionality up into objects and want to know the javascript way of doing things.
Published in Javascript on Sunday, August 17th, 2008