Irakli's blog

Hello World!

This is a classic “Hello World” post!

const greeting = (name: string): string => {
  // returns greeting with name
  return `Hello ${name}!`
}

greeting("World")

=> 'Hello World!'

Stay tuned for more!