没有原型的对象也是存在的

let xj={name:"xiangjun"};
console.log(xj);
console.log(xj.hasOwnProperty("name"));

//完全数据字典对象
let hd2=Object.create(null,{
    name:{value:"houdunren"}
})
//没有原型的对象也是存在的
console.log(hd2.hasOwnProperty("name"));//axioshtml.html:724 Uncaught TypeError: hd2.hasOwnProperty is not a function

 

上一篇:2021-09-09


下一篇:Bioinformatics Data Skills by Oreilly学习笔记-6