Number object in JavaScript is used to manipulate numbers whether it is negative or positive. The JavaScript Number type represents the double (fractional values) type… Read More
Tag Archives: JavaScript-Properties
The JavaScript Number.MIN_SAFE_INTEGER is a constant number that represents the minimum safe integer. This constant has a value of (-(253 – 1)). Use Number.MIN_SAFE_INTEGER, as… Read More
In JavaScript, NEGATIVE_INFINITY is a property of a number object which represents negative infinity (-Infinity). It can be explained as a number that is lower… Read More
The Javascript Function.length property of the function object in Javascript is used to return the number of parameters required by a function. Syntax: function.length Parameters:… Read More
In JavaScript, NaN stands for Not a Number. It represents a value that is not a valid number. It can be used to check whether… Read More
In javascript Number.POSITIVE_INFINITY represents the largest positive value i.e positive infinity. Actually the value of Number.POSITIVE_INFINITY is the same as the value of the global… Read More
The Function.displayName property in JavaScript is used to set the display name of the function. If the displayName property is used to log the name… Read More
The function.caller property of the JavaScript function object returns the function that invoked the specified function. It returns null if the function “f” was invoked… Read More
The new.target pseudo-property let us detect whether a function or constructor is called with the help of new operator or not. Syntax: new.target The following… Read More
The function name property of the javascript object is used to return the name of the function. This name property of the function is only… Read More
The Symbol.unscopables property in Javascript is a well-known symbol that is used to specify an object value of whose own and inherited property names are… Read More
The Symbol.split the property in JavaScript is a well-known symbol that is used to specify the method that splits a string at the indices that… Read More
The Symbol.search property in JavaScript is a well-known symbol determines the method that returns the index within a string that matches the regular expression. This… Read More
The Symbol.match property in JavaScript is a well-known symbol that is used to identify the matching of a regular expression against a string and this… Read More
The Symbol.replace the property in JavaScript is a well-known symbol that is used to determine the method that replaces the matched substring of a string.… Read More