function Human(name, age, sex){
this.name = name;
this.age = age;
this.sex = sex;
}
Human.prototype.toString = function() {
return this.name + " is " + this.age + " years old";
}
var jessie = new Human(\'Jessie\', 12, \'male\');
console.log(jessie.toString());