how to put a type of variable of javascript code example
Example: how to get type of variable in javascript
> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"
> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"