Skip to content

Instantly share code, notes, and snippets.

@pradeeprjth
Created February 9, 2022 08:59
Show Gist options
  • Save pradeeprjth/66b33d653435b9680982d12c35c4e845 to your computer and use it in GitHub Desktop.
Save pradeeprjth/66b33d653435b9680982d12c35c4e845 to your computer and use it in GitHub Desktop.
the const persion is a array of fullname
const person = {
fullName: function() {
return this.firstName + " " + this.lastName;
}
}
const person1 = {
firstName: "Mary",
lastName: "Doe"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment