如何使用函数
// 若是是{}或者_new Object(),返回true $.isPlainObject(obj);
如何实现prototype
// 判断是否在自身原型上有isPrototypeOf属性 core_hasOwn.call(obj.constructor.prototype,"isPrototypeOf");
如何使用code
// 若是是[],{}或者空的构造函数,返回true $.isEmptyObject(obj)
如何实现对象
for( name in obj ){ return false; }
构造函数会自动生成:Aaa.prototype.constructor = Aaa;
可是用for in是遍历不到的原型