Objects များသည် key: value pairs များဖြင့် data များကို စုစည်းထားသော variables များဖြစ်သည်။
javascript
const person = {
firstName: "Aung",
lastName: "Hla",
age: 30,
fullName: function() {
return this.firstName + " " + this.lastName;
}
};
console.log(person.firstName);
console.log(person.fullName());You should see
Aung Aung Hla