Typeof
Typeof
The typeof operator gives you the type of a variable.
Example
let s = "hello";
let n: typeof s;
let n: string
#JavaScript
The typeof operator gives you the type of a variable.
let s = "hello";
let n: typeof s;
let n: string
#JavaScript