document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. function Human(name, age, sex){
  2.    this.name = name;
  3.    this.age = age;
  4.    this.sex = sex;
  5. }
  6.  
  7. Human.prototype.toString = function() {
  8.   return this.name + " is " + this.age + " years old";
  9. }
  10.  
  11. var jessie = new Human(\'Jessie\', 12, \'male\');
  12. console.log(jessie.toString());
');