//// [arrayTypeOfTypeOf.ts] // array type cannot use typeof. var x = 1; var xs: typeof x[]; // Not an error. This is equivalent to Array var xs2: typeof Array; var xs3: typeof Array; var xs4: typeof Array; //// [arrayTypeOfTypeOf.js] // array type cannot use typeof. var x = 1; var xs; // Not an error. This is equivalent to Array var xs2; var xs3 = ; var xs4 = ;