1. let notStr:any = 4 //any 类型
    2. notStr = 'maybe it is a string'
    3. notStr = true
    4. notStr.getName
    5. notStr.getName()
    6. let numberOrString:number | string = 123 // 联合类型
    7. numberOrString = 'abc'
    8. numberOrString = true //报错了