File size: 112 Bytes
7bb3a2b
 
 
 
 
1
2
3
4
5
6
function greet(name: string): string {
  return `Hello, ${name}!`;
}

document.body.innerHTML = greet("World");