| 1 | โ | function greet(name) { |
| 2 | โ | console.log("Hello, " + name) |
| 3 | โ | return true |
| 4 | } | |
| 5 | ||
| 6 | โ | const users = ["Alice", "Bob"] |
| 7 | users.forEach(greet) |
| 1 | + | function greet(name: string): void { |
| 2 | + | console.log(`Hello, ${name}!`) |
| 3 | } | |
| 4 | ||
| 5 | + | const users: string[] = ["Alice", "Bob", "Charlie"] |
| 6 | users.forEach(greet) | |
| 7 | + | console.log("Done") |