w3resource

JavaScript MAX_VALUE Property: Number Object

Description

The MAX_VALUE property of number object returns the maximum numeric value represented in JavaScript. The property has a value of approximately 1.79E+308. If a Value is larger than MAX_VALUE then it will be treated as "Infinity".

Version

Implemented in JavaScript 1.1

Syntax

Number.MAX_VALUE

Example:

The following web document demonstrates how the MAX_VALUE() property can be used.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>JavaScript Number object - MAX_VALUE property example</title>
</head>
<body>
<h1 style="color: red">JavaScript Number object : MAX_VALUE property</h1>
<hr />
<script type="text/javascript">
//This is done to make the following JavaScript code compatible to XHTML. <![CDATA[
x=999999
y=99999
if(x*y <= Number.MAX_VALUE){
document.write("The number " +x*y + " is not greater than the maximum value.");
}
//]]>
</script>
</body>
</html>

View the example in the browser

Supported Browser

Internet Explorer 7 Firefox 3.6 Google Chrome 7 Safari 5.0.1 Opera 10
Yes Yes Yes Yes Yes

See also:

JavaScript Core objects, methods, properties.

Previous: JavaScript constructor Property: Number Object
Next: JavaScript MIN_VALUE Property: Number Object

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/javascript/object-property-method/number-MAX_VALUE.php