Any type
let notSure: any = 13;
notSure = "maybe a string instead";
notSure = false; // OK, guess it's a booleanconst myList: any[] = [13, 'Blue Streak is a film from 1999', false];Last updated
let notSure: any = 13;
notSure = "maybe a string instead";
notSure = false; // OK, guess it's a booleanconst myList: any[] = [13, 'Blue Streak is a film from 1999', false];Last updated