Универсальные (динамические) типы

//Initialized by any type
let d: any = "some string"
d = 3.14
d = [235]
d = new Date()

console.log(`d is "${d}"`)