Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

arrow function in ts

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

getResult('joyous jackal' , 100);
 
PREVIOUS NEXT
Tagged: #arrow #function #ts
ADD COMMENT
Topic
Name
8+4 =