通用(动态)类型

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

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