xxxxxxxxxx
const foo = <T extends unknown>(x: T) => x;
xxxxxxxxxx
//prototype
const/let <FunctionName> = (params: type) :<ReturnType> =>{
.
};
const PrintName = (name: string): string => {
return console.log("my name is " , name) ;
}
xxxxxxxxxx
// ES6: With arrow function
var getResult = (username: string, points: number): string => {
return `${ username } scored ${ points } points!`;
};
getResult('joyous jackal' , 100);
xxxxxxxxxx
const addNumbers =(num1:number,num2:number)=>{
console.log(num1+num2)
}
addNumbers(2,4);
arrow function typescript
xxxxxxxxxx
function add(num1: number, num2: number):void{
console.log(num1+num2)
}
add(10, 20)
// Arrow function its have at frist variable than there value and after type name have this arrow =>
const add = function(num1: number, num2: number):void =>{
console.log(num1+num2)
}
add(10, 20)
// when we are use arrow funtion this time no need write function
const add = (num1: number, num2: number):void =>{
}
// finally
const add = (num1: number, num2: number):void =>{
console.log(num1+num2)
}
add(10, 20)