TypeScript overview
checking the validity of JavaScript types with this library
2025-01-04 16:39 // updated 2025-03-21 12:44
TypeScript extends JavaScript to ensure that a variable's data conforms to a certain form, or "type"!
Why TypeScript?
TypeScript allows for easier debugging and prevents bad data from circulating through an app:
- also, all JavaScript works in TypeScript
- however, TypeScript must transpile into JavaScript to work on the web
The essence of TypeScript
We use TypeScript to validate variables by assigning each variable in TypeScript a type:
function myFunction(
isYearRound: boolean,
cost: number,
destination: { name: string }
) {
...
}
Breaking that down:
- the
isYearRound
variable has a primitive type ofboolean
- thus,
isYearRound
can only be eithertrue
orfalse
- thus,
- the
cost
has a type of anumber
- (JavaScript has no integers or floats; all numeric data are just
number
s) - thus,
cost
cannot have symbols other than digits and legal operators
- (JavaScript has no integers or floats; all numeric data are just
- the
destination
has the type of an object{}
- this object, in turn, contains a property called
name
- the
name
has a type ofstring
- the
- this object, in turn, contains a property called
Abstracting that further:
function myFunction(
propertyX: type,
...
) {
...
}
type
can take on any of the following (with a few more others):string
number
boolean
Date
unknown
void
never
- the
type
can also be arrays of each of the above, e.g.string[]
number[]
- as shown in the earlier top snippet, the
type
can also be an object- the properties in that object would also get their own
type
s
- the properties in that object would also get their own