Answers for "typescript arrow function"

7

generic arrow function typescript

const foo = <T extends unknown>(x: T) => x;
Posted by: Guest on April-29-2020
4

arrow function in typescript

//prototype 
const/let <FunctionName> = (params: type) :<ReturnType> =>{
  ....
};

const PrintName =  (name: string): string => {
  return console.log("my name is " , name) ;
}
Posted by: Guest on October-13-2020
5

typescript arrow function

let sum = (x: number, y: number): number => {
    return x + y;
}

sum(10, 20); //returns 30
Posted by: Guest on July-06-2020
1

arrow function in ts

// ES6: With arrow function  
var getResult = (username: string, points: number): string => {  
  return `${ username } scored ${ points } points!`;  
};

getResult('joyous jackal' , 100);
Posted by: Guest on October-12-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language