get the type of an object javascript code example
Example 1: get type of var js
function doSomething(x) {
if(typeof(x) === 'string') {
alert('x is a string')
} else if(typeof(x) === 'number') {
alert('x is a number')
}
}
Example 2: type of javascript
if (typeof(value) !== "undefined") {
}
Example 3: javascript check if variable is object
function isObject(val) {
if (val === null) { return false;}
return ( (typeof val === 'function') || (typeof val === 'object') );
}
var person = {"name":"Boby Snark"};
isObject(person);
Example 4: check data type in js
var x = "Hello World";
typeof x;