typescript type of returned from function arguments code example
Example 1: typescript default parameter
// Default Parameters
sayHello(hello: string = 'hello') {
console.log(hello);
}
sayHello(); // Prints 'hello'
sayHello('world'); // Prints 'world'
Example 2: typescript annotate return type
function add(x: number, y: number): number {
return x + y;
}