js print type of variable 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: javascript get type of var
typeof operando
Example 3: how to get type of variable in javascript
> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"
Example 4: check data type in js
var x = "Hello World";
typeof x; // "string"