TypeScript: chiamata di una funzione

Una funzione deve essere chiamata in modo da eseguirla. Questo processo è definito comefunction invocation.

Sintassi

Function_name()

L'esempio seguente illustra come richiamare una funzione:

Esempio

function test() {   // function definition    
   console.log("function called") 
} 
test()              // function invocation

Durante la compilazione, genererà lo stesso codice JavaScript.

function test() { 
   console.log("function called"); 
} 
test();    // function invocation

Produrrà il seguente output:

function called