functions typescript code example
Example 1: types function typescript
interface Safer_Easy_Fix {
title: string;
callback: () => void;
}
interface Alternate_Syntax_4_Safer_Easy_Fix {
title: string;
callback(): void;
}
Example 2: typescript function type
function sayHello(name: string): string {
console.log(`Hello, ${name}`!);
}
sayHello('Bob');
Example 3: typescript function type
interface Date {
toString(): string;
setTime(time: number): number;
}
Example 4: typescript function
function add(x: number, y: number): number {
return x + y;
}
let myAdd = function (x: number, y: number): number {
return x + y;
};
Example 5: types function typescript
interface Param {
title: string;
callback: function;
}
Example 6: function with return type in angular
greet() : number {
return "Hello, " + this.greeting;
}