加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
09-检测一个对象是否是纯对象.html 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
wangcai 提交于 2023-04-04 16:49 . xx‘
<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> -->
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化