KamYee
摘要: for...in for...in语句以任意顺序遍历一个对象的除Symbol以外的可枚举属性。 for...in会循环原型链上的属性 function test() { } test.prototype.testa = '123123' var c1 = new test() c1.testb = 阅读全文
posted @ 2020-03-04 17:11 KamYee 阅读(169) 评论(0) 推荐(0) 编辑