check type of variable javascipt code example
Example 1: check data type in js
var x = "Hello World";
typeof x; // "string"
Example 2: javascript check type of variable var
> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"
var x = "Hello World";
typeof x; // "string"
> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"