About 2,960 results
Open links in new tab
  1. JavaScript Object Properties - W3Schools

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, Python, PHP, Bootstrap, Java, XML and more.

  2. Working with objects - JavaScript | MDN - MDN Web Docs

    4 days ago · JavaScript is designed on an object-based paradigm. An object is a collection of properties, and a property is an association between a name (or key) and a value. A property's value can be a …

  3. JavaScript Object Properties - GeeksforGeeks

    Jan 16, 2026 · Object properties allow developers to easily organize, access, and modify related data. Each property consists of a key (name) and a value, which can be any data type.

  4. Introduction to JavaScript Objects and Their Properties - What Is an ...

    There are two main ways to access object properties in JavaScript: dot notation and bracket notation. Dot notation is the most common and straightforward way to access object properties. Here is the …

  5. JavaScript Object Property Types and Their Attributes

    Summary: in this tutorial, you will learn about the JavaScript object’s properties and attributes such as configurable, enumerable, writable, get, set, and value. JavaScript specifies the characteristics of …

  6. JavaScript Object Properties: A Complete Tutorial with Examples

    Oct 6, 2024 · In JavaScript, object properties are key-value pairs that store data related to the object. Properties can be of any data type, including strings, numbers, arrays, functions (methods), or even …

  7. JavaScript Object Properties: Everything You Need to Know

    Jul 25, 2025 · Object properties are the backbone of JavaScript. Whether you’re building APIs, UIs, or working with data — you’re working with objects.

  8. Object - JavaScript | MDN

    Oct 17, 2025 · Objects can be created using the Object() constructor or the object initializer / literal syntax. Nearly all objects in JavaScript are instances of Object; a typical object inherits properties …

  9. Accessing & Modifying Object Properties in JavaScript: A Complete …

    Aug 29, 2025 · JavaScript gives us two main ways to do this: dot notation and bracket notation. Let’s start with the most common one: dot notation. Dot notation is simple and widely used. You just type …

  10. Objects - The Modern JavaScript Tutorial

    Jun 19, 2022 · In JavaScript, objects penetrate almost every aspect of the language. So we must understand them first before going in-depth anywhere else. An object can be created with figure …