代码拉取完成,页面将自动刷新
<script>
// 检测一个对象是否是纯对象
const isPlainObject = function isPlainObject(obj) {
let prototype;
return Object.prototype.toString.call(obj) === '[object Object]'
&& (prototype = Object.getPrototypeOf(obj),prototype === null
|| prototype == Object.getPrototypeOf({})
)
};
// {} new Object() Object.create(null)
console.log(isPlainObject({}));
console.log(isPlainObject(new Object()));
console.log(isPlainObject(Object.create(null)));
console.log("-------------");
function Person() { }
let p = new Person()
console.log(isPlainObject(new Array()));
console.log(isPlainObject(p));
</script>
<!-- <script>
// 检测是否为纯粹的对象
// 阻止null进入判断
// Object.prototype.toString.call(obj) === '[object Object]'
// new Object出来的,或Object.create(null)
// (prototype = Object.getPrototypeOf(obj), prototype === null
// || prototype == Object.getPrototypeOf({}))
// 去掉|| prototype == Object.getPrototypeOf({}) 无法判断是否是new Object或{} 对象
const isPlainObject = function isPlainObject(obj) {
let prototype;
return Object.prototype.toString.call(obj) === '[object Object]'
&& (prototype = Object.getPrototypeOf(obj), prototype === null
|| prototype == Object.getPrototypeOf({}))
};
console.log(isPlainObject({}));
console.log(isPlainObject(new Object()));
console.log(isPlainObject(Object.create(null)));
console.log(isPlainObject(new Array()));
</script> -->
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。