How do you explicitly declare a variable with a type in TypeScript?
let name = "Alice"
let name: string = "Alice"
let string name = "Alice"
string name = "Alice"
This question is part of this quiz :