Guest User

Untitled

a guest
Jun 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class Person {
  2. constructor (firstName) {
  3. this.firstName= firstName
  4. }
  5.  
  6. const Person = function(firstName) {
  7. this.firstname = firstName
  8. }
  9. Person.prototype.setName() {
  10. }
Add Comment
Please, Sign In to add comment