1.Hello Word
1 2 3 4Hello World! 5 6 7Hello World!
8 10 11
2.
1 2 3 4Hello World! 5 6 7Hello World!
8 9 10 15 16 17
1 function sayHi(){ 2 Person.prototype.name = "Nicholas"; 3 Person.prototype.age = 29; 4 Person.prototype.job = "Software Engineer"; 5 Person.prototype.sayName = function(){ 6 alert(this.name); 7 }; 8 var person = new Person(); 9 alert(person.name); 10 person.sayName();11 person.name = "Greg"; 12 } 13 function Person(){ 14 }