Singleton
JavaScriptにおけるオブジェクトをすべてシングルトンとみなすこともできるでしょう。 要するに、 オブジェクトリテラルの作成 = シングルトンの作成 ともいえます
binding
.bind(this)
Functional Programming in Javascript
以下の5つのfunctionを勉強するのにいいtutorial
- map
- filter
- concatAll
- reduce
- zip
indexers
- Whereas the 5 functions can be used on any collectionaccess (like Array)
- indexers can only be used on collections that support random-
forEach
forEachはloopが止まらない
reference
型の判定
list 判定
var foo = [];
var bar = {};
alert(foo instanceof Array); // true
alert(bar instanceof Array); // false
reference