Еще один (правда, уже обсуждался здесь):
function foo() {
return this;
}
alert(foo === foo.prototype.constructor); // true
alert(foo() === foo.prototype.constructor()); // ?
a) true
b) false
c) зависит от реализации
http://perfectionkills.com/javascrip...#comment-58304