上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 28 下一页
  2022年1月23日
摘要: const user={ name:"hundsun", age:16 } console.log(Object.isSealed(user));//判断对象是否被封闭 Object.seal(user);//封闭对象API console.log(Object.isSealed(user)); O 阅读全文
posted @ 2022-01-23 14:25 weakup 阅读(26) 评论(0) 推荐(0) 编辑
  2022年1月22日
摘要: const user={ name:"hundsun", age:16 } // Object.preventExtensions(user);//禁止向对象中添加属性 if(Object.isExtensible(user)){//判断是否可以添加 user.site="xx.com"; cons 阅读全文
posted @ 2022-01-22 21:28 weakup 阅读(22) 评论(0) 推荐(0) 编辑
摘要: const user={ name:"hundsun", age:16 } Object.defineProperty(user,"name",{ value:"hundsun", writable:true,//此处如果是false说明是不可以被修改的 Enumerator:true,//此处如果 阅读全文
posted @ 2022-01-22 21:23 weakup 阅读(11) 评论(0) 推荐(0) 编辑
摘要: let arr=["sd","ha"]; let obj=Object.entries(arr); console.log(obj); for (const iterator of arr) { console.log(iterator); } for (const iterator of obj) 阅读全文
posted @ 2022-01-22 21:06 weakup 阅读(15) 评论(0) 推荐(0) 编辑
摘要: //面向对象的封装与抽象 function User(name,age){ let data={name,age};//写法独特也可以写成这样this.name=name; this.age=age; let info=function(){ return data.age>50?"老年":"青年" 阅读全文
posted @ 2022-01-22 20:57 weakup 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 恢复内容开始 null 恢复内容结束 阅读全文
posted @ 2022-01-22 20:40 weakup 阅读(26) 评论(0) 推荐(0) 编辑
摘要: function User(name){ this.name=name; this.show=function(){ console.log(this); } } let xj=new User("xj"); xj.show();//对象去调用的时候this指向当前对象 User {name: 'x 阅读全文
posted @ 2022-01-22 18:53 weakup 阅读(24) 评论(0) 推荐(0) 编辑
摘要: //工厂函数创建对象 function user(name,age){ return{ name, age, show(){ console.log(`${this.name}-hsr-${this.age}`); } } } let xj=user("hundsun",12); xj.show() 阅读全文
posted @ 2022-01-22 18:38 weakup 阅读(15) 评论(0) 推荐(0) 编辑
摘要: //浅拷贝 let hd={ name:"jack" } let obi={} // // obi.name=hd.name; // console.log(obi); // // for (const key in hd) { // obi[key]=hd[key]; // } // consol 阅读全文
posted @ 2022-01-22 16:23 weakup 阅读(29) 评论(0) 推荐(0) 编辑
摘要: for...of for...of语句在可迭代对象(包括 Array,Map,Set,String,TypedArray,arguments 对象等等)上创建一个迭代循环,调用自定义迭代钩子,并为每个不同属性的值执行语句 const array1 = ['a', 'b', 'c']; for (co 阅读全文
posted @ 2022-01-22 16:08 weakup 阅读(32) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 28 下一页