📜  hasownproperty javascript代码示例

📅  最后修改于: 2022-03-11 15:04:16.949000             🧑  作者: Mango

代码示例6
o = new Object();
o.propOne = null;
o.hasOwnProperty('propOne');   // returns true
o.propTwo = undefined;  
o.hasOwnProperty('propTwo');   // returns true