⚡ Rocket.net – Managed WordPress Hosting

MiltonMarketing.com  Powered by Rocket.net – Managed WordPress Hosting

Bernard Aybouts - Blog - MiltonMarketing.com

Approx. read time: 2.6 min.

Post: Introduction to JavaScript – Properties

Introduction to JavaScript – Properties

Understanding Instances and Properties

When you introduce a new piece of data into a JavaScript program, the browser saves it as an instance of a data type. An instance is an individual case (or object) of a data type.

For example, when you create a string like “Hello”, JavaScript saves it as an instance of the string data type in the computer’s memory. Similarly, the number 40.7 is stored as an instance of the number data type.

What Are Properties?

An instance, like the string “Hello”, has additional information attached to it. This additional information is called a property. Properties are values associated with a JavaScript object.

Every string instance has a property called length that stores the number of characters in it. You can retrieve property information by appending the string with a period and the property name.

Example:


            console.log('Hello'.length);
        

In the example above, the value saved to the length property is retrieved from the string “Hello”. The program prints 5 to the console because “Hello” has five characters in it.

More Examples of Properties – Introduction to JavaScript – Properties

Example 1: Accessing the length of different strings


            console.log('JavaScript'.length); // Output: 10
            console.log('Programming'.length); // Output: 11
            console.log('12345'.length);       // Output: 5
        

In these examples, the length property returns the number of characters in each string.

Example 2: Using properties with numbers


            let num = 40.7;
            console.log(Number.isInteger(num)); // Output: false
        

In this example, the isInteger method is used to check if num is an integer.

Using Properties in Objects – Introduction to JavaScript – Properties

In JavaScript, objects are collections of properties, and these properties are key-value pairs.

Example:


            let car = {
              make: 'Toyota',
              model: 'Corolla',
              year: 2021
            };

            console.log(car.make);  // Output: Toyota
            console.log(car.model); // Output: Corolla
            console.log(car.year);  // Output: 2021
        

In this example, the car object has three properties: make, model, and year. Each property holds a value that can be accessed using dot notation.

Assignment – Introduction to JavaScript – Properties

Create a JavaScript object called book with the following properties:

  • title (a string)
  • author (a string)
  • pages (a number)
  • publishedYear (a number)

Write code to log each property value to the console using dot notation.

Answer Key


            // Assignment solution
            let book = {
              title: 'JavaScript: The Good Parts',
              author: 'Douglas Crockford',
              pages: 176,
              publishedYear: 2008
            };

            console.log(book.title);         // Output: JavaScript: The Good Parts
            console.log(book.author);        // Output: Douglas Crockford
            console.log(book.pages);         // Output: 176
            console.log(book.publishedYear); // Output: 2008
        

In this solution, the book object is created with four properties: title, author, pages, and publishedYear. Each property value is logged to the console using dot notation.

By understanding instances and properties, you can effectively manipulate and access data in your JavaScript programs. Properties allow you to store and retrieve additional information about an instance, making your code more dynamic and powerful.

About the Author: Bernard Aybout (Virii8)

Avatar of Bernard Aybout (Virii8)
I am a dedicated technology enthusiast with over 45 years of life experience, passionate about computers, AI, emerging technologies, and their real-world impact. As the founder of my personal blog, MiltonMarketing.com, I explore how AI, health tech, engineering, finance, and other advanced fields leverage innovation—not as a replacement for human expertise, but as a tool to enhance it. My focus is on bridging the gap between cutting-edge technology and practical applications, ensuring ethical, responsible, and transformative use across industries. MiltonMarketing.com is more than just a tech blog—it's a growing platform for expert insights. We welcome qualified writers and industry professionals from IT, AI, healthcare, engineering, HVAC, automotive, finance, and beyond to contribute their knowledge. If you have expertise to share in how AI and technology shape industries while complementing human skills, join us in driving meaningful conversations about the future of innovation. 🚀