프로토 타입에 관련된 내용이고 객체지향 공부중이라 물어봄 ㅠ


function Free(){
}

Free.prototype.Item = function(){
}
Free.prototype.Unit = function(){
}
Free.prototype.Money = function(){
}
Free.prototype.Move = function(){
}
Free.prototype.Point = function(){
}

이상태에서 Free.Point(); 이렇게 호출하면 나머지 Item / Unit / Money / Move 도 다 같이 호출되는거임?


추가

function Free() {
Free.prototype.point = 2;
}

var user = new Free();

console.log(user.point); ==> 2 

내가 쓴 예제가 맞ㅇ는거임?