1. const name: string = 'qingfeng';
    2. const age: number = 18;
    3. const male: boolean = false;
    4. const undef: undefined = undefined;
    5. const nul: null = null;
    6. const obj: object = { name, age, male };
    7. const bigintVar1: bigint = 9007199254740991n;
    8. const bigintVar2: bigint = BigInt(9007199254740991);
    9. const symbolVar: symbol = Symbol('unique');