js alert var type code example
Example 1: how to get type of variable in javascript
> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"
Example 2: typeof javascript
console.log(typeof 'blubber');
> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"
console.log(typeof 'blubber');