TypeScript Quick Tips
TypeScript YesJavaScriptsuperset of , added static type option. It can help developers write clearer and easier to maintain code. This article will introduce some practical TypeScript quick tricks to help you master the language faster.
1. Type annotation
Type annotation in TypeScript is a variable,functionThe method of the parameter and return value specifying the type. This helps the compiler understand the intent of the code and provides it at compile timeType Check。
function greet(name: string): string {
return 'Hello, ' + name;
}
- 1
- 2
- 3
In the example above, wegreet
Function parametersname
Specified typestring
, and also specify a type for the function return valuestring
。
2. Interface
Interfaces are a way in TypeScript to define object shapes. It helps you describe the structure of an object and ensures that the object satisfies a specific shape.
interface Person {
name: string;
age: number;
}
function greet(person: Person): string {
return 'Hello, ' + ;
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
In the example above, we define a name calledPerson
interface, it containsname
andage
Two attributes. Then we're ingreet
This interface is used as parameter type in the function.
3. Generics
Generics are a way to create reusable components in TypeScript. It allows you to use type parameters when defining functions, interfaces, or classes, so that you can specify specific types when invoked.
function identity<T>(arg: T): T {
return arg;
}
let output = identity<string>("myString"); // output type is 'string'
- 1
- 2
- 3
- 4
- 5
In the example above, we define a name calledidentity
generic function that accepts a type parameterT
. Callingidentity
When functioning, we specify the type parameter asstring
, so the type of return value is alsostring
。
4. Union type and type alias
Union types allow you to specify that a variable can be one of multiple types. A type alias is to give a new name to a type.
type StringOrNumber = string | number;
function formatValue(value: StringOrNumber): string {
return typeof value === 'string' ? value : ();
}
- 1
- 2
- 3
- 4
- 5
In the example above, we define a name calledStringOrNumber
type alias, it can bestring
ornumber
type. Then we're informatValue
This type alias is used as the parameter type in the function.
5. Enumeration
Enumeration is a way to create named constant collections in TypeScript. It can help you create more readable names for a set of related values or strings.
enum Color {
Red,
Green,
Blue
}
let c: Color = ;
- 1
- 2
- 3
- 4
- 5
- 6
- 7
In the example above, we define a name calledColor
enumeration, which contains three membersRed
、Green
andBlue
. Then we create a variablec
and assign it to。
6. Assertion
Type assertions in TypeScript are a kind of tellingCompilerThe way the variable is actually typed. This helps you bypass type checking when needed.
let someValue: any = "this is a string";
let strLength: number = (<string>someValue).length;
- 1
- 2
- 3
In the above example, we use type assertion tosomeValue
The variable is asserted asstring
type, then accessed itslength
property.
7. Module
Modules in TypeScript are a way to organize code. It allows you to split the code into reusable parts and control their visibility.
= function greet(name: string): string {
return 'Hello, ' + name;
};
- 1
- 2
- 3
In the example above, we useExport a name called
greet
function.
8. Namespace
Namespaces are another way to organize your code in TypeScript. It allows you to split your code into different namespaces to avoid name conflicts.
namespace Utility {
export function log(message: string) {
(message);
}
}
("Hello, world!");
- 1
- 2
- 3
- 4
- 5
- 6
- 7
In the example above, we define a name calledUtility
and export a namespace in it calledlog
function. Then we passThis function was called.
9. Decorators
Decorators are a way in TypeScript to modify classes and class members. It can help you add extra functionality to classes, methods, properties, or parameters.
function enumerable(value: boolean) {
return function (target: any, propertyKey: string, descriptor: PropertyDescriptor) {
= value;
};
}
class Greeter {
- 1
- 2
- 3
- 4
- 5
- 6
- 7