Files
2nd/10_Wiki/Topic_Programming/Topic_JavaScript/JavaScript_NaN.md
T
Antigravity Agent e9cbf23ab5 docs(10_Wiki): Dev 폴더 누락분 반영 — Topic_Programming으로 통합
이전 재구성 작업에서 Dev/ 폴더가 누락되었던 것을 반영.

- Dev/Topic_Programming(중첩 폴더, 78개)은 Dev 자체 최상위 폴더들
  (Architecture/Conventions/Engineering_Intelligence 등)과 완전 중복이라 제거.
- Dev 최상위 엔지니어링 지식 폴더(Architecture/Conventions/Engineering_Intelligence/
  Failure_Library/Generalized_Principles/Language/Pattern_Catalog/Platform_Guides/
  Subsystems, 77개)는 이미 Topic_Programming/Topic_Programming에 더 최신 버전이
  존재해 중복 제거(고유 콘텐츠 1개는 예외 처리하여 이동 보존).
- Dev의 W3Schools 언어 튜토리얼 폴더(Topic_C/CPP/CSS/CSharp/HOWTO/HTML/Java/
  JavaScript/PHP/Python/SQL/W3CSS, 1201개)는 전부 Topic_Programming 하위로 이동.
- 에이전트 운영 상태(.astra/docs)는 그대로 유지, 콘텐츠 폴더만 정리.
- Topic_Programming 최종 문서 수: 2784 → 3985.
2026-07-05 00:39:13 +09:00

5.5 KiB

id, title, category, status, verification_status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, created_at, updated_at, review_reason, merge_history, tags, raw_sources, applied_in, github_commit
id title category status verification_status canonical_id aliases duplicate_of source_trust_level confidence_score created_at updated_at review_reason merge_history tags raw_sources applied_in github_commit
javascript-nan JavaScript NaN Frontend draft conceptual
NaN
Not a Number
JS NaN
isNaN
invalid number
B 0.89 2026-06-23 2026-06-23
javascript
js
web
frontend
w3schools
nan
numbers
https://www.w3schools.com/js/js_nan.asp

JavaScript NaN

🎯 한 줄 통찰 (One-line insight)

NaN ("Not a Number") is a JavaScript number-type value produced when a calculation cannot yield a valid number, and it is the only JavaScript value that is not equal to itself. [S1]

🧠 핵심 개념 (Core concepts)

  • Produced by invalid math — You get NaN when JavaScript cannot calculate a number (e.g. 100 / "Apple"). [S1]
  • Its type is number — The type of NaN is number; though it means "not a number," it belongs to the JavaScript number type. [S1]
  • Numeric strings convert — JavaScript tries to convert numeric strings to numbers in arithmetic operations, so 100 / "10" is 10. [S1]
  • Non-numeric strings yield NaN — A non-numeric string cannot be converted to a number, so the result is NaN. [S1]
  • isNaN() detects it — Use the isNaN() function to find out if a value is not a number. [S1]
  • Not equal to itselfNaN is the only JavaScript value that is not equal to itself; NaN == NaN is false. [S1]
  • Propagates through math — If you use NaN in a mathematical operation, the result will also be NaN. [S1]

🧩 추출된 패턴 (Extracted patterns)

  • Never compare with == — Because NaN != NaN, test for it with isNaN() rather than equality. [S1]
  • Coerce-then-compute — Arithmetic implicitly coerces string operands to numbers; convertible strings work, non-convertible ones poison the result with NaN. [S1]
  • NaN contamination — Any arithmetic involving NaN returns NaN, so a single bad value can spread through a calculation chain. [S1]

📖 세부 내용 (Details)

Invalid Number Operations You get NaN when JavaScript cannot calculate a number. [S1]

let x = 100 / "Apple";

document.getElementById("demo").innerHTML = x;

NaN is a Number The type of NaN is number. This may look strange, but NaN belongs to the JavaScript number type. [S1]

let x = NaN;

document.getElementById("demo").innerHTML = typeof x;

Numeric Strings JavaScript tries to convert numeric strings to numbers in arithmetic operations. The result is 10, because "10" is converted to the number 10. [S1]

let x = 100 / "10";

document.getElementById("demo").innerHTML = x;

Non-Numeric Strings A non-numeric string cannot be converted to a number. The result is NaN, because "Apple" cannot be converted to a number. [S1]

let x = 100 / "Apple";

document.getElementById("demo").innerHTML = x;

Using isNaN() You can use the JavaScript function isNaN() to find out if a value is not a number. [S1]

let x = 100 / "Apple";

document.getElementById("demo").innerHTML = isNaN(x);

NaN is Not Equal to Itself NaN is the only JavaScript value that is not equal to itself. To test for NaN, use isNaN(). [S1]

let x = NaN;

document.getElementById("demo").innerHTML = x == x;

NaN in Math If you use NaN in a mathematical operation, the result will also be NaN. [S1]

let x = NaN;
let y = 5;

document.getElementById("demo").innerHTML = x + y;

Note NaN means "Not a Number." However, the type of NaN is number. Use isNaN() to check if a value is NaN. [S1]

🛠️ 적용 사례 (Applied in summary)

The page's own snippets are the canonical applied examples — 100 / "Apple" producing NaN, typeof NaN returning "number", and isNaN(x) testing the result. No external project/commit applications found in the source.

💻 코드 패턴 (Code patterns)

Test whether a value is NaN (language: JavaScript):

let x = 100 / "Apple";
document.getElementById("demo").innerHTML = isNaN(x);

Observe that NaN is not equal to itself:

let x = NaN;
document.getElementById("demo").innerHTML = x == x;

⚖️ 모순 및 업데이트 (Contradictions & updates)

No contradictions found in the source. (Note the deliberate counter-intuitive facts the page calls out: typeof NaN is "number", and NaN == NaN is false.)

검증 상태 및 신뢰도

  • 상태: draft
  • 검증 단계: conceptual (실제 적용 사례 발견 시 applied/validated로 승격 가능)
  • 출처 신뢰도: B (W3Schools — widely used educational reference, not a primary standards body)
  • 신뢰 점수: 0.89
  • 중복 검사 결과: 신규 생성 (New discovery)

🔗 지식 그래프 (Knowledge Graph)

📚 출처 (Sources)

📝 변경 이력 (Change history)

  • 2026-06-23: Initial draft synthesized from the W3Schools "JavaScript NaN" page (Astra wiki-curation, P-Reinforce v3.1 format).