728x90
300x250
SMALL
javaScript는 오직 한가지 타입의 number만 가지고 있다.
number는 소수점을 포함하거나 포함하지 않고 사용할 수 있다.
let x = 3.14; // A number with decimals
let y = 3; // A number without decimals
이 때 매우 크거나 작은 수는 지수를 이용한 과학적 표기법으로 작성할 수 있 다.
<p id="demo"></p>
<script>
let x = 123e5;
let y = 123e-5;
document.getElementById("demo").innerHTML = x + "<br>" + y;
</script>
실행결과
12300000
0.00123
123e5에서 e는 뒤에 오는 숫자로 10을 올린 것을 나타낸다. 즉 123e5는 123 * 10⁵ 를 나타닌다.
계산하면 123*100,000 = 12300000
e-는 /10으로 간주 된다.
따라서 123e-5는 123 * 1 / 10 * 5 = 123 / 100000 = 0.00123
과학적 표기법 참고
https://en.wikipedia.org/wiki/Scientific_notation
Scientific notation - Wikipedia
From Wikipedia, the free encyclopedia Jump to navigation Jump to search Method of writing numbers, especially very large or small ones "E notation" redirects here. For the series of preferred numbers, see E series. For the food additive codes, see E number
en.wikipedia.org
728x90
반응형
LIST
'javaScript > JS Tutorial' 카테고리의 다른 글
[javaScript] 부동소수점 연산 오류 (0) | 2022.09.30 |
---|---|
[javaScript]Number (0) | 2022.09.29 |
[자바스크립트]endsWith() 끝나는 문자열 확인하기 (0) | 2022.09.27 |
[javaScript]includes() 문자열에 지정된 값 포함 되어있는지 확인 (0) | 2022.09.25 |
[javaScript] 지정된 텍스트 인덱스 위치 반환 indexOf() lastIndexOf() (0) | 2022.09.24 |
댓글