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.    this.toString = function(){
  6.     return this.name + " is " + this.age + " years old";
  7.    };
  8. }
  9.  
  10. var james = new Human(\'James\', 21, \'male\');
  11. var jessie = new Human(\'Jessie\', 12, \'male\');
  12.  
  13. console.log(james.toString());
  14. console.log(jessie.toString());
');