숫자.NEGATIVE_INFINITY 숫자 속성 개체는 음의 무한대 값을 나타냅니다.
구문
구문은 다음과 같습니다.
Number.NEGATIVE_INFINITY
예시
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Number.NEGATIVE_INFINITY; document.write("Negative infinity value: " + result); </script> </body> </html>
출력
Negative infinity value: -Infinity