Skip to content

Instantly share code, notes, and snippets.

@koalicioous
Created September 26, 2021 02:12
Show Gist options
  • Save koalicioous/bba2b57205c92d90cabdff8b468b3e7f to your computer and use it in GitHub Desktop.
Save koalicioous/bba2b57205c92d90cabdff8b468b3e7f to your computer and use it in GitHub Desktop.
function sapaTeman(nama: string) {
console.log(`Selamat Pagi, ${nama}!`)
}
sapaTeman('Anwar')
// Hasil: Selamat pagi, Anwar!
sapaTeman(2021)
// Error: argunent '2021' is not assignable to parameter of type 'string'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment