how to find typeof variable in javascript 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 javascript
typeof("string"); //string
typeof(123); //number