xxxxxxxxxx
const isObject = (obj) =>
typeof obj === 'object' &&
obj instanceof Object &&
!Array.isArray(obj) &&
obj.constructor !== Date;
isObject({ name: 'John', age: 34 }) // => true;
isObject([1,2,3,4]) // => false;
isObject(null) // => false;
isObject(new Date()) // => false;
isObject(function () {}) // => false;
isObject('Doe') // => false;
isObject(3.14) // => false;
isObject(NaN) // => false;
xxxxxxxxxx
let myObject = {
firstname: 'harry',
lastname: 'potter'
}
//check the typeof if, boolean, object, string etc...
console.log(typeof myObject);
if(typeof myObject === 'object') {
console.log('this is object');
}
xxxxxxxxxx
//checks if is object, null val returns false
function isObject(val) {
if (val === null) { return false;}
return ( (typeof val === 'function') || (typeof val === 'object') );
}
var person = {"name":"Boby Snark"};
isObject(person);//true
xxxxxxxxxx
const isObject = (obj) => obj === Object(obj)
console.log(isObject({})); // true
console.log(isObject({a:1})); // true
console.log(isObject(123)); //false