1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-09 02:36:40 +02:00

Fix typo in JavaScript roadmap (#5369)

Correcting the typo.
This commit is contained in:
RMN-001
2024-03-18 18:28:57 +01:00
committed by GitHub
parent 1eb5a9c49d
commit ec9d2d4c74

View File

@@ -1,6 +1,6 @@
# undefined # 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. TypeScript has two corresponding _types_ by the same names. How these types behave depends on whether you have the `strictNullChecks` option on.