Fix typo in JavaScript roadmap (#5369)

Correcting the typo.
feat/open-graph^2
RMN-001 7 months ago committed by GitHub
parent 1eb5a9c49d
commit ec9d2d4c74
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/data/roadmaps/typescript/content/101-typescript-types/104-undefined.md

@ -1,6 +1,6 @@
# undefined
JavaScript has two primitive values used to signal absent or uninitialized value: `null` (absent) and `undefined` (unintialized).
JavaScript has two primitive values used to signal absent or uninitialized value: `null` (absent) and `undefined` (uninitialized).
TypeScript has two corresponding _types_ by the same names. How these types behave depends on whether you have the `strictNullChecks` option on.

Loading…
Cancel
Save