Guest User

Untitled

a guest
Jul 16th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. function Person(name) {
  2. this.name = name;
  3. }
  4.  
  5. var desph = new Person('desph');
  6. console.log(desph.name);
Add Comment
Please, Sign In to add comment