Guest User

Untitled

a guest
Nov 29th, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2.  name ="maxime"
  3. otherName = "yugi-ho"
  4.  
  5. function Person(name){
  6.   this.name = name;
  7. }
  8.  
  9. Person.prototype.greet = function(otherName){
  10.   return "Hi " + otherName + ", my name is " + name;
  11. }
  12.  
  13. console.log(Person.greet(name,otherName))
  14.              
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment