Skip to main content

Javascript-basics:
Fundamental Objects

image for Fundamental Objects

Fundamental Objects

JavaScript fundamental objects are essential built-in objects that provide basic functionalities in the language. Some key fundamental objects include:

  • Object: The base object from which all other objects inherit.
  • Array: Used to store and manipulate lists of items.
  • Function: Functions in JavaScript are objects and are used to define reusable blocks of code.
  • Date: Allows working with dates and times.
  • RegExp (Regular Expression): Enables pattern matching with strings.
  • Error: Represents runtime errors and provides information about them.