[Javascript] 소수점 오류

lilclown·2022년 6월 17일
0

Javascript

목록 보기
7/42
post-thumbnail
post-custom-banner

소수점 오류


소수점 오류

let num = 0.1 + 0.2;

console.log(num); //0.30000000000000004
  • 이와 같은 현상이 발생하는 이유는 10/3=3.333333.. 이라는 계산 결과가 나오는 것처럼 소수를 2진수로 바꾸는 과정에서 무한 소수로 바뀌어버리기 때문


해결 방안



Tomorrow better than today, Laugh at myself

- 출처 -

Javascript 소수점 오류 원인, 해결방안

profile
Tomorrow better than today, Laugh at myself
post-custom-banner

0개의 댓글