// Parameter type annotation function greet(name: string): string { return name.toUpperCase(); } console.log(greet("hello")); // HELLO console.log(greet(1)); // error, name is typed (string)