obj01 is simply an object that inherits from a function object, you can't create functions in this way.
The typeof operator returns "function" only when its operand is by itself callable.
There are only three valid ways to create function objects:
Function declaration:
function name (/*arg, argn...*/) {
}
Function expression:
var fn = function /*nameopt*/ (/*arg, argn...*/) {
};
Function constructor:
var fn = new Function("arg", "argn", "FunctionBody");
Edit: In response to your comment, obj01 , is just an object, its prototype chain contains a function object, then Function.prototype and then Object.prototype but that doesn't make an object callable.
Your object is not callable, functions are just objects, but they have some special internal properties that allow them to behave like that.
An object is callable only if it implements the internal [[Call]] property.
There are other internal properties that function objects have, like the [[Construct]], which is invoked when the new operator is used, the [[Scope]] property which stores the lexical environment where the function is executed, and more.
If you try to invoke your object like if it were a function, you will have a TypeError, because when you make a function call, the object needs to have the [[Call]] internal property.
Function objects need to have the above internal properties, and the only way that they can be constructed is by the three methods I mentioned early, you can see how internally functions objects are created here.