ทำไมต้อง TypeScript?

function greet(name: string): string {
  return "Hello " + name.toUpperCase();
}
greet(42); // compile error!