Typeof

Typeof

Source

The typeof operator gives you the type of a variable.

Example

let s = "hello";
let n: typeof s;
   
let n: string

#JavaScript