Home Java Javascript - The core objects

Javascript - The core objects

java20230615175418.jpg

Introduction to the JavaScript core objects:

JavaScript provides a number of standard objects, with properties and methods to perform various manipulations. These objects called JavaScript core objects, have been standardized by ECMA (European Computer Manufacturers Association) and form the basis of Javascript.

Core objects are independent of the client browser as opposed to browser objects.

Here is the list of Javascript core objects:

Object Description Array The Array object as the name suggest, is used to create arrays. It has many methods to add, delete or extract elements from an array and sort them. Boolean The Boolean object is used to create Boolean values. Elements with two states: true and false. Date The Date object is used to create dates and time. It also offers methods to manipulate them. Function The Function object allows you to define custom functions. Math The Math object allows you to manipulate mathematical functions, such as trigonometric functions. Number The Number object allows you to perform basic operations on numbers.. RegExp The RegExp object allows you to create regular expressions. String The String object provides a variety of methods for manipulating strings.

Original document published on CommentcaMarcheet

  • Java

LEAVE A REPLY

Please enter your comment!
Please enter your name!