
- Javascript Basics Tutorial
- Javascript - Home
- Javascript - Overview
- Javascript - Syntax
- Javascript - Enabling
- Javascript - Placement
- Javascript - Variables
- Javascript - Operators
- Javascript - If...Else
- Javascript - Switch Case
- Javascript - While Loop
- Javascript - For Loop
- Javascript - For...in
- Javascript - Loop Control
- Javascript - Functions
- Javascript - Events
- Javascript - Cookies
- Javascript - Page Redirect
- Javascript - Dialog Boxes
- Javascript - Void Keyword
- Javascript - Page Printing
- JavaScript Objects
- Javascript - Objects
- Javascript - Number
- Javascript - Boolean
- Javascript - Strings
- Javascript - Arrays
- Javascript - Date
- Javascript - Math
- Javascript - RegExp
- Javascript - HTML DOM
- JavaScript Advanced
- Javascript - Error Handling
- Javascript - Validations
- Javascript - Animation
- Javascript - Multimedia
- Javascript - Debugging
- Javascript - Image Map
- Javascript - Browsers
- JavaScript Useful Resources
- Javascript - Questions And Answers
- Javascript - Quick Guide
- Javascript - Functions
- Javascript - Resources
What is the maximum value represented by Number object in JavaScript?
The largest possible value a number in JavaScript can have 1.7976931348623157E+308. The Number.MAX_VALUE property belongs to the static Number object. It represents constants for the largest possible positive numbers that JavaScript can work with.
Example
You can try to run the following code to get the maximum value represented by Number object −
<html> <head> <script> <!-- function showValue() { var val = Number.MAX_VALUE; document.write ("Value of Number.MAX_VALUE : " + val ); } //--> </script> </head> <body> <p>Click the following to see the result:</p> <form> <input type="button" value="Click Me" onclick="showValue();" /> </form> </body> </html>
- Related Articles
- What is the minimum value represented by Number object in JavaScript?
- Return the maximum value that can be represented by the dtype of an object in Numpy
- Return the minimum value that can be represented by the dtype of an object in Numpy
- Returning the highest number from object properties value – JavaScript
- JavaScript Program to Find Maximum value possible by rotating digits of a given number
- What is the maximum value of float in Python?
- What is a NaN property of a Number object in JavaScript?
- Adding numbers represented by string without complete conversion in JavaScript
- What type of reaction is represented by the digestion of food in our body?
- Sorting an array object by property having falsy value - JavaScript
- Python Pandas - Return the maximum value of the Timedelta object
- How to divide data.table object rows by maximum value in each row excluding 0 in R?
- What is math object in JavaScript?
- What is date object in JavaScript?
- What is arguments object in JavaScript?

Advertisements