このコードがこのように動作する理由を理解しようとしています。
test.js
var User;
console.dir(User);
function User(name) { // User = function(name) { ... seems not to be the same?
this.name = name;
}
ノード test.js
[Function: User]
ステートメントUser
の前に値があるのはなぜですか?function()