Function
function greet(){
alert("Hello world.");
}Function Types
function getCountry() : string {
return "Canada";
}
var c : string = getCountry(); // ok
var c : number = getCountry(); // compile-time errorOptional Parameters
Default Parameters
Rest Parameters
Lambdas ( arrow function )
Last updated