Java教程

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

本文主要是介绍没有原型的对象也是存在的,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
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

 

这篇关于没有原型的对象也是存在的的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!