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!!
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

TypeScript - Named Function TypeScript - Named Function Reviewed by Anil Singh on 3:33 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^