Respuesta :

Answer:

MAX_VALUE

Explanation:

Number.MAX_VALUE represents the maximum possible value that javascript can represent.  Its value can be determined using the following code segment:

<script>

var x = Number.MAX_VALUE;

alert(x);

</script>

This will display a value of 1.7976931348623157e+308 .

Similarly Number.MIN_VALUE represents the minimum value that can be handled by javascript. Its value is 5e-324.

Answer:

POSITIVE_INFINITY