Skip to content

Type Annotations

Video Lecture

Type Annotations Type Annotations

Sample Code

1
2
3
4
5
6
7
const foo = (bar: string) => {
  return 'Hello, ' + bar
}

const baz = 'ABC'

console.log(foo(baz))