Pointers / References in JavaScript: a hack
I prefer to call them references, but some people call them pointers. Regardless of what you call them, any experienced programmer knows that references sometimes come in handy.
In JavaScript, objects and functions are already passed by reference (as long as you don’t use parenthesis after the function name). Unfortunately, there is no way to force [...]