Por que `typeof this` retorna“ object ”?

var f = function(o){ return this+":"+o+"::"+(typeof this)+":"+(typeof o) };
f.call( "2", "2" );
// "2:2::object:string"

var f = function(o){ return this+":"+(typeof this)+":"+(typeof o); };
var x = [1,/foo/,"bar",function(){},true,[],{}];
for (var i=0;i<x.length;++i) console.log(f.call(x[i],x[i]));
// "1:object:number"
// "/foo/:object:object"
// "bar:object:string"
// "function () {\n}:function:function"
// "true:object:boolean"
// ":object:object"
// "[object Object]:object:object"

Eu vejo os mesmos resultados no Chrome, Firefox e Safari, então presumo que seja pora especificação, mas por que? E onde na especificação isso é definido? E por que não para funções?

questionAnswers(1)

yourAnswerToTheQuestion