const name: string = 'qingfeng';const age: number = 18;const male: boolean = false;const undef: undefined = undefined;const nul: null = null;const obj: object = { name, age, male };const bigintVar1: bigint = 9007199254740991n;const bigintVar2: bigint = BigInt(9007199254740991);const symbolVar: symbol = Symbol('unique');
