Created: 2023-02-03 07:01
Status: #concept
Subject: Programming Object-Oriented Programming
Tags: Python JavaScript Java Class JavaScript Object

Object

Definition

An Object is an instantiated collection of related Data or Functionality.

  • may have Properties (aka: Attributes/Fields) to store their data and represent its internal state.
  • may have Methods that can be called using the object.

References