js find variable type code example
Example 1: javascript find type of variable
> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"
if(typeof bar === 'number') {
//whatever
}
Example 2: check data type in js
var x = "Hello World";
typeof x; // "string"