Skip to main content

Posts

Showing posts with the label TypeScript Named Function Angular 2

TypeScript - Named Function

Named Function - The named function is very similar to the JavaScript function and only one difference - we must declare the type on the passed parameters. Stayed Informed – Learn Angular 2 with TypeScript Example – JavaScript function addTwoNumer(num1, num2) { return num1 + num2; } Example – TypeScript function addTwoNumer(num1: number , num2: number ) : number { return num1 + num2; } I hope you are enjoying with this post! Please share with you friends. Thank you!!