About 4,620,000 results
Open links in new tab
  1. JavaScript Objects - W3Schools

    Objects are collections of key-value pairs, where each key (known as property names) has a value. Objects can describe anything like houses, cars, people, animals, or any other subjects.

  2. Objects in JavaScript - GeeksforGeeks

    Oct 15, 2025 · An object is a dynamic data structure that stores related data as key-value pairs, where each key uniquely identifies its value. The values of properties can be primitives, …

  3. Object - JavaScript | MDN

    Oct 17, 2025 · The Object type represents one of JavaScript's data types. It is used to store various keyed collections and more complex entities. Objects can be created using the …

  4. JavaScript Objects

    In this tutorial, you will learn about JavaScript objects and how to manipulate objects' properties effectively.

  5. Objects in JavaScript – A Beginner's Guide - freeCodeCamp.org

    Jul 20, 2022 · What Are Objects in JavaScript? An object is a data type that can take in collections of key-value pairs. A major difference between an object and other data types such …

  6. JavaScript Objects (with Examples) - Programiz

    In JavaScript, we can perform various operations on object properties like modifying, adding, deleting, and so on. Let's discuss some of them. 1. Modify Object Properties. We can modify …

  7. Understanding JavaScript Objects | JavaScript.com

    JavaScript objects are best explained by thinking of a real-world object. Take a car for example. Cars come in all shapes and sizes - different colors, different makes and models, different …

  8. Objects - The Modern JavaScript Tutorial

    Jun 19, 2022 · As we know from the chapter Data types, there are eight data types in JavaScript. Seven of them are called “primitive”, because their values contain only a single thing (be it a …

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

    Aug 27, 2025 · 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 …

  10. JavaScript Object Reference - GeeksforGeeks

    Jul 23, 2025 · JavaScript objects are collections of properties, where each property is defined as a key-value pair. They are used to model real-world entities and complex data structures. …