继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

【学习打卡】第6天 ES(6-11)全版本语法-对象扩展:Object.values(),Object.entries()

浪里个浪小白龙
关注TA
已关注
手记 75
粉丝 3
获赞 4
  • 课程名称:JavaScript ES(6-11)全版本语法 每个前端都需要的基础课

  • 课程章节: 对象属性描述:Object.getOwnPropertyDescriptors()

  • 主讲老师:谢成

课程内容:

今天学习的内容包括:

对象属性描述:Object.getOwnPropertyDescriptors(),

课程收获:

Object.getOwnPropertyDescriptors() 所指定对象的所有自身属性的描述符,如果没有任何自身属性,则返回空对象。

 const obj = {
    name: 'imooc',
    course: 'es'
 }

const desc = Object.getOwnPropertyDescriptors(obj)
console.log(desc)

const obj = {}
Reflect.defineProperty(obj, 'name', {
    value: 'xiecheng',
    writable: true,
    configurable: true,
    enumerable: false
})
Reflect.defineProperty(obj, 'age', {
    value: 34,
    writable: true,
    configurable: true,
    enumerable: true
})

console.log(obj)
obj.name = 'zhangsan'
console.log(obj)
delete obj.name
console.log(obj)
for(let key in obj){
    console.log(key)
}
console.log(Object.getOwnPropertyDescriptors(obj))
console.log(Object.getOwnPropertyDescriptor(obj, 'age'))

图片描述
图片描述

图片描述
今天学习课程共用了35分钟,重新了解了一下Object.getOwnPropertyDescriptors(),这是我不知道第多少次决心补习JavaScript基础,希望能够坚持下去。

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP