
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
Number.MAX_VALUE Property in JavaScript
The Number.MAX_VALUE property of the Number object represents the maximum number allowed in JavaScript.
Syntax
Its Syntax is as follows
Number.MAX_VALUE
Example
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Number.MAX_VALUE; document.write("Maximum value: " + result); </script> </body> </html>
Output
Maximum value: 1.7976931348623157e+308
- Related Articles
- HTML DOM Input Number max Property
- Get max value per key in a JavaScript array
- CSS max-width property
- CSS max-height property
- Top n max value from array of object JavaScript
- The max-height Property in CSS
- The max-width Property in CSS
- HTML DOM Progress max Property
- HTML DOM Meter max Property
- HTML DOM Input Number value Property
- C# DateTime Max Value
- C# TimeSpan Max value
- HTML DOM Input Month max Property
- HTML DOM Input Range max property
- HTML DOM Input Date max Property
- HTML DOM Input Datetime max Property

Advertisements