Skip to content

Type Annotations

Video Lecture

Type Annotations Type Annotations

Sample Code

function foo(bar: string) {
    return 'Hello, ' + bar
}

let baz: string = 'ABC'

console.log(foo(baz))

Comments