Typo in TS docs (#7869)

pull/7918/head
Arman Toreniyazov 4 weeks ago committed by GitHub
parent e52608a48a
commit 77ca038e8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/data/roadmaps/typescript/content/intersection-types@RWYXEZMODUrqwRWf_Lqi9.md

@ -10,7 +10,7 @@ type typeAB = typeA & typeB;
The `typeAB` will have all properties from both typeA and typeB. The `typeAB` will have all properties from both typeA and typeB.
Note that the union type uses the `|` operator that defines a variable which can hold a value of either `typeA` or `typeB` Note that the union type uses the `|` operator that defines a variable which can hold `typeA` value, or `typeB` value, or both altogether.
Learn more from the following links: Learn more from the following links:

Loading…
Cancel
Save