码迷,mamicode.com
首页 > Web开发 > 详细

js 查看对象的属性特征

时间:2021-07-02 16:01:40      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:span   rgb   ble   enum   prope   log   color   object   code   

 

 

var user = {
    name:"angdh",
    age:11,

};

console.log(
    JSON.stringify(Object.getOwnPropertyDescriptors(user),null,2)
);

 

{
  "name": {
    "value": "angdh",
    "writable": true,
    "enumerable": true,
    "configurable": true
  },
  "age": {
    "value": 11,
    "writable": true,
    "enumerable": true,
    "configurable": true
  }
}

 

js 查看对象的属性特征

标签:span   rgb   ble   enum   prope   log   color   object   code   

原文地址:https://www.cnblogs.com/angdh/p/14961804.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!