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 = ;

            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 = ;

            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.

For privacy reasons YouTube needs your permission to be loaded. For more details, please see our Privacy Policy – Legal Disclaimer – Site Content Policy.

The Longevity Blueprint: AI-Powered Health Optimization

Current step:1AI-Human Medical Analyzer: Smarter, Personalized Health
2AI-Human Medical Analyzer: Smarter, Personalized Health

> SYS.HEALTH: AI-Human Medical Analyzer_

// Revolutionize Your Diagnostics

Experience the perfect blend of cutting-edge AI precision and expert human care. Our revolutionary analyzer turns your raw health data into personalized, actionable insights tailored just for you.

> INITIALIZING_BIOMETRIC_SCAN...

[+] DATA_INPUT

Securely upload complex health parameters, including lab bloodwork and comprehensive medical history.

[+] PROCESSING

Advanced algorithmic parsing combined with human-level oversight ensures hyper-accurate data interpretation.

[+] OUTPUT_MATRIX

Receive smarter, faster, and truly personalized care strategies to take immediate charge of your health journey.

A name/nickname is required to continue.

> TRANSLATION_MATRIX_ACTIVE...
[ LANG_EN ]
Knowledge Heals, Prevention Protects
[ LANG_HI ]
ज्ञान ठीक करता है, रोकथाम सुरक्षा करती है
[ LANG_ZH ]
知识治愈,预防保护
[ LANG_JA ]
知識は癒し、予防は守る
[ LANG_HE ]
הידע מרפא, המניעה מגנה
[ LANG_AR ]
المعرفة تُشفي، والوقاية تحمي
[ LANG_FR ]
La connaissance guérit, la prévention protège

> SYS.AUTH: Data Processing Consent_

[ AWAITING_AUTHORIZATION ] By providing consent, you allow us to process your uploaded data through our proprietary AI-Human analysis system.

  • [+] SECURE_REVIEW: This ensures your information is carefully reviewed using advanced AI technology and certified professional oversight to deliver personalized health insights.
  • [+] PRIVACY_LOCK: Your privacy is our strict priority. Your data will only be used for this specific diagnostic purpose.

> SYS.UPLOAD: Share Medical Records [OPTIONAL]_

[ USER_CONTROL_ACTIVE ] Uploading your medical records during registration is entirely optional. You can choose to bypass this step and provide data later if it suits your timeline.

You dictate the data flow: share as much or as little as you’re comfortable with, and let us guide you toward better health.

[+] FORMAT_SUPPORT

We accept all file formats, including photos, PDFs, text documents, and raw official medical data.

[+] DATA_YIELD

Increased inputs correlate with higher precision. The more info you share, the better we tailor your personalized insights.

> NEXT_STEPS: Post-Registration Protocol_

Once your registration is complete, a human specialist from our team will personally reach out to you within 3-10 business days. We will discuss your health journey and map out exactly how we can support you.

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. 🚀