diff --git a/src/data/roadmaps/typescript/content/101-typescript-types/104-undefined.md b/src/data/roadmaps/typescript/content/101-typescript-types/104-undefined.md index 0d2fbdfd3..57cd9c511 100644 --- a/src/data/roadmaps/typescript/content/101-typescript-types/104-undefined.md +++ b/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.