其他分享
首页 > 其他分享> > js判断有无属性及新添属性

js判断有无属性及新添属性

作者:互联网

1、Object 判断有无新属性 

  obj.hasOwnProperty(propertyName)  //有无指定属性propertyName        Object.keys(obj)                                 //返回obj所有属性名(string),是数组[ ]  

2、obj 添加新属性 newpropt

  obj.newpropt = newvalue        obj[newpropt] = newvalue // 这时的newpropt可以是string变量的动态属性

标签:newpropt,obj,新添,propertyName,Object,js,newvalue,属性
来源: https://www.cnblogs.com/qinlongqiang/p/12373658.html