Introduction

Within JavaScript itself, there are built-in objects with their own properties and methods, intended to make programming easier.
- Array
- Math
- Given
- Function
In addition to the listed objects, there are also objects whose names are the same as the names of simple primitives (only with a capital letter):
- String
- Number
These objects are “equipped” with the methods needed to work with the corresponding data type and are intended to make working with primitive types easier. When the need arises for an operation on such a primitive type, the compiler automatically “wraps” the primitive type in its “counterpart” object, after which all methods of the built-in object are available.
In this article, I wanted to clearly gather in one place all methods and properties of objects embedded in javascript.
“String” as object
Methods that can be applied to a string object:
Methods of the String object
where the specified values are replaced
match
specified number of characters
Methods that wrap “string” in an HTML tag
The following methods return a string wrapped with an HTML tag (possibly some HTML attribute).
“Number” as object
Number is an object that has the following built-in methods:
“Function” as object
Function is an object that has the following methods built in:
Array object
Methods that can be applied to the array object are as follows:
Math object
Math object properties
The properties of the Math object return one of the known mathematical constants:
Math methods
Methods of the Math object take a number as an attribute and return the result of some mathematical operation on that number:
Date object
Date is an object in javascript that is responsible for date and time, and the methods that can be applied to that object are as follows:
UTC time
