Create a function to check whether the given parameter is an Object or not.
isObject(function add(x,y) {return x + y}) ➞ true
isObject(new RegExp('^[a-zA-Z0-9]+$', 'g')) ➞ true
isObject(null) ➞ false
isObject("") ➞ false
Inputs may be null, primitive wrapper types, dates.