JavaScript Number.MIN_VALUE Property Last Updated : 13 Apr, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report Number.MIN_VALUE is the smallest possible positive number representable in JavaScript within float precision. It does not represent the most negative number, instead of that, it possesses the value of the smallest positive number which is closest to 0. Syntax: Number.MIN_VALUEReturn Value: It has approximately a value of 5E-324(>0). But in practice, the more precise value of Number.MIN_VALUE in Node.js and browsers is 2^-1074. Note: As MIN_VALUE is a static property of the Number class, we should always use it as Number.MIN_VALUE instead of using as a property of the object created from the Number class ( static properties always belong to the class, not to the objects). So, if we create a Number object and try to access the MIN_VALUE property of the object, it will return undefined. Let us look at some examples to see how to use this property: Example 1: This example shows the use of the MIN_VALUE property. JavaScript let num=100; console.log(Number.MIN_VALUE); console.log("Check if it is greater than zero :", Number.MIN_VALUE>0); Output: 5e-324 Check if it is greater than zero : true Example 2: This example shows the use of the MIN_VALUE property. JavaScript let num=100; console.log(num.MIN_VALUE); Output: undefinedWe have a complete list of Javascript Number methods, to check those please go through the JavaScript Number Complete Reference article. Supported Browsers: Chrome  1 and aboveEdge 12 and aboveFirefox 1 and aboveOpera 3 and aboveSafari 1 and aboveWe have a complete list of JavaScript Number constructor, properties, and methods list, to know more about the numbers please go through that article. Comment More infoAdvertise with us Next Article JavaScript Number.MIN_VALUE Property S shinjanpatra Follow Improve Article Tags : JavaScript Web Technologies JavaScript-Properties ES6 Similar Reads JavaScript Number.MAX_VALUE Property Number.MAX_VALUE represents the biggest possible numeric value of a positive number that can be represented in JavaScript. It is the maximum possible positive number representable in JavaScript within float precision. The values greater than Max_VALUE are represented as infinity. Syntax: Number.MAX_ 2 min read JavaScript Number.MIN_SAFE_INTEGER Property 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 a property of a number object because it is a static property of a number. Syntax: Number.MIN_SAFE_INTEGER Return Value: Co 1 min read JavaScript Number MAX_VALUE & MIN_VALUE Property JavaScript Number.MAX_VALUE and Number.MIN_VALUE is used to represent maximum and minimum numeric values in javascript. Syntax: Number.MAX_VALUE Number.MIN_VALUE Return Type: Both Number.MAX_VALUE and Number.MIN_VALUE returns a numeric value. MAX_VALUE has a value of approximately 1.79E+308. The val 1 min read JavaScript Number Prototype Property 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 numbers. A number literal like 98 is not an integer value but a floating-point value. It maintains the precision of 17 decimal place 4 min read JavaScript Number Static Properties The JavaScript Number is an object that can represent numeric values like integer, float, hexadecimal, decimal, etc. It acts as a wrapper object for primitive numeric values. It has various methods and properties that are used to perform different tasks on numbers. The following table shows some sta 2 min read Like