typescript sample ( hello world and summary numbers )

 


function addNumbers(a: number, b: number) { 
    return a + b

var sum: number = addNumbers(1015

console.log('Sum of the two numbers is: ' +sum);

Yorumlar