JavaScript Objects and Object-Oriented Programming

JavaScript Objects and Object-Oriented Programming

Working with Complex Data Structures

Author
Nguyen Bao Huy
14:55:00 20/02/2026
3 min read
0 comments

Real Life Objects, Properties, and Methods

In real life, a car is an object. A car has properties like weight and color, and methods like start and stop:

javascript
var car = {
  // Properties of object
  name: "Fiat", 
  model: 520, 
  color: "white", 
  // Method of object
  start(){
    // code here
  }, 
  drive(){
    // code here
  }, 
  brake(){
    // code here
  }
}

All cars have the same properties, but the property values differ from car to car. All cars have the same methods, but the methods are performed at different times.

JavaScript Objects

You have already learned that JavaScript variables are containers for data values. This code assigns a simple value (Fiat) to a variable named car:

javascript
let car = "Fiat";

Objects are variables too. But objects can contain many values. This code assigns many values (Fiat, 500, white) to a variable named car:

javascript
const car = {type:"Fiat", model:"500", color:"white"};

The values are written as name:value pairs (name and value separated by a colon). It is a common practice to declare objects with the const keyword. Learn more about using const with objects in the chapter: JS Const.

Object Definition

You define (and create) a JavaScript object with an object literal:

javascript
const person = {firstName:"John", lastName:"Doe", age:50, eyeColor:"blue"};

Spaces and line breaks are not important. An object definition can span multiple lines:

javascript
const person = {  
  firstName: "John",
  lastName: "Doe",
  age: 50,
  eyeColor: "blue"
};

Accessing Object Properties

You can access object properties in two ways: objectName.propertyName or objectName["propertyName"]

javascript
person.lastName;
javascript
person["lastName"];

JavaScript objects are containers for named values called properties.

Object Methods

Objects can also have methods. Methods are actions that can be performed on objects. Methods are stored in properties as function definitions.

PropertyProperty Value
firstNameJohn
lastNameDoe
age 50
eyeColor blue
fullNamefunction () {return this.firstName+" "+this.lastName}

A method is a function stored as a property.

javascript
const person = {  
  firstName: "John",
  lastName : "Doe",
  id       : 5566,
  fullName : function() {
    return this.firstName + " " + this.lastName;
  }
};

In the example above, this refers to the person object:

  • this.firstName means the firstName property of person.
  • this.lastName means the lastName property of person.

What is “this” ?

In JavaScript, the this keyword refers to an object. Which object depends on how this is being invoked (used or called). The this keyword refers to different objects depending on how it is used. In an object method, “this“ refers to the object. Alone, “this“ refers to the global object. In a function. “this“ refers to the global object. In a function, in strict mode, “this“ is undefined. In an event, “this“ refers to the element that received the event. Methods like “call()“, “apply()“, and “bind()“ can refer “this” to any object.

Note: “this“ is not a variable. It is a keyword. You cannot change the value of “this“.

The this Keyword

In a function definition, this refers to the "owner" of the function. In the example above, this is the person object that "owns" the fullName function. In other words, this.firstName means the firstName property of this object. Learn more about this in The JavaScript this Tutorial.

Accessing Object Methods

You access an object method with the following syntax:

objectName.methodName()

javascript
name = person.fullName();

If you access a method without the () parentheses, it will return the function definition:

javascript
name = person.fullName;

Do Not Declare Strings, Numbers, and Booleans as Objects!

When a JavaScript variable is declared with the keyword "new", the variable is created as an object:

javascript
x = new String();        // Declares x as a String object
y = new Number();        // Declares y as a Number object
z = new Boolean();       // Declares z as a Boolean object

Avoid String, Number, and Boolean objects. They complicate your code and slow down execution speed.

First Lesson

You are at the beginning of this curriculum.

Latest Tutorial

More chapters coming soon to this topic.

Author avatar

Nguyen Bao Huy

Lead Fullstack & AI Solutions Engineer

Specializing in Next.js App Router, React 19, TypeScript, and modern design systems. Passionate about creating seamless user experiences.

Discussion

0

No comments yet

Be the first to share your thoughts, question a concept, or provide additional tips!

Leave a Reply

Share your insights, questions, or solutions with the developer community.

Your avatar
0 / 500 characters