-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunction.ts
105 lines (86 loc) · 2.97 KB
/
function.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// POINT: NOT REQUIRED (TS auto infer return type of function)
const sumArrow = (n1: number, n2: number): number => {
return n1 + n2;
};
function sumFn(n1: number, n2: number): number {
return n1 + n2;
}
// POINT: GOOD
function sum(n1: number, n2: number) {
return n1 + n2;
}
function handleSum(n1: number, n2: number, cb: (n: number) => void) {
const result = n1 + n2;
cb(result);
}
function sumOfThree(n1: number, n2: number, n3: number) {
return n1 + n2 + n3;
}
// Void return Type - if no return mentioned
const printResult = (text: number) => {
console.log("Result : ", text);
};
// undefined Type - if return undefined then fn type is undefined
let aCar: undefined;
const printResultUndef = (text: number): undefined => {
console.log("Result : ", text);
return;
};
printResult(sum(1, 2));
let aFunction;
// POINT: Pointer
aFunction = sum;
// POINT: NOTE Where TS does not work
aFunction = 5;
console.log(aFunction(10, 1));
// POINT: type Function - takes only function
let bFunc: Function;
bFunc = sum;
// bFunc = 5; // Can not be added to type Function
// POINT: No arg restriction, TS allows any func
bFunc = printResult;
console.log(bFunc(10, 1)); // > undefined
// POINT: arg & return type -> restricting to a format of function/s
let cFunc: (a: number, b: number) => number;
cFunc = sum;
// cFunc = printResult;
let dFunc: (a: number, b: number, cb: (n: number) => void) => void;
dFunc = handleSum;
dFunc = sum;
dFunc = printResult;
// dFunc = sumOfThree;
handleSum(10, 20, (result) => {
console.log(result);
// POINT: cb: (n: number) => void means that returned value is may not used in dFunc even though it is returned from cb function
// TS does not care about the return type of Callback functions
return result;
});
// POINT: Generic Functions
// By declaring `Type` param in function signature/def, we link i/p type with the return type.
// If not done the return type of s, n will be empty
function firstElement<Type>(arr: Type[]): Type {
return arr[0];
}
const s = firstElement(["a", "b", "c"]); // s is of type 'string'
const n = firstElement([1, 2, 3]); // n is of type 'number'
// POINT: Multiple infer (here we dont have to define Type, it is auto inferred)
function map<Input, Output>(
arr: Input[],
func: (arg: Input) => Output
): Output[] {
return arr.map(func);
}
const parsed = map(["1", "2", "3"], (n) => parseInt(n));
// POINT: Contraints - When we want to restrict the generic types
// https://www.typescriptlang.org/docs/handbook/2/functions.html#constraints
function longest<Type extends { length: number }>(a: Type, b: Type) {
if (a.length >= b.length) {
return a;
} else {
return b;
}
}
const longerArray = longest([1, 2], [1, 2, 3]); // longerArray is of type 'number[]'
const longerString = longest("alice", "bob"); // longerString is of type 'string'
// const notOK = longest(10, 100); // Error! Numbers don't have a 'length' property
// POINT: https://www.typescriptlang.org/docs/handbook/2/functions.html#working-with-constrained-values