Kasthamandap College
const person = {
firstName = "john",
lastName = "doe",
id = 5556,
fullName: function(){
return this.firstName + " " + this.lastName;
}
};
Dharmendra Karki