how to create a function in typescript code example
Example 1: typescript function
function greet(name: string): string {
return name.toUpperCase();
}
console.log(greet("hello"));
console.log(greet(1));
Example 2: typescript default parameter
function sayName({ first, last = 'Smith' }: {first: string; last?: string }): void {
const name = first + ' ' + last;
console.log(name);
}
sayName({ first: 'Bob' });
Example 3: typescript function type
function sayHello(name: string): string {
console.log(`Hello, ${name}`!);
}
sayHello('Bob');
Example 4: types function typescript
interface Easy_Fix_Solution {
title: string;
callback: Function;
}
Example 5: typescript annotate return type
function add(x: number, y: number): number {
return x + y;
}