Here are a couple interesting trivia items that I learned about JavaScript functions in Chapter 15 of the book Speaking JavaScript:
var add = new Function('x', 'y', 'return x + y'); console.log(add(2, 3); // 5 console.log(add instanceof Function); // true