Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- name ="maxime"
- otherName = "yugi-ho"
- function Person(name){
- this.name = name;
- }
- Person.prototype.greet = function(otherName){
- return "Hi " + otherName + ", my name is " + name;
- }
- console.log(Person.greet(name,otherName))
- </script>
Advertisement
Add Comment
Please, Sign In to add comment