If you would like to check if the prototype for an object solely comes from Object. Filters out String, Number, Array, Arguments, etc.
function isObject (n) {
return Object.prototype.toString.call(n) === '[object Object]';
}
Or as a single-expression arrow function (ES6+)
const isObject = n => Object.prototype.toString.call(n) === '[object Object]'