Edit in JSFiddle

function Person() {}

var park = new Person();
var kim = new Person();

Person.prototype.getType = function () {
	return "대학생";
}