How can you explicitly define a variable with multiple possible types?
let value: multiple<number, string> = 42;
let value = number | string = 42;
let value: number | string = 42;
let value: any = 42 | "hello";
This question is part of this quiz :
Type Annotation and Inference in TypeScript