Thuta Learning
IntermediateProgrammingbeginner

JS Objects

Relax. We'll talk through this in plain words — no textbook voice.

Objects are variables that group data together using key: value pairs.

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
JS Objects | Thuta Learning