摘要: 阅读全文
posted @ 2021-12-13 15:16 ๑Secret 阅读(9) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2021-12-10 19:29 ๑Secret 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-12-10 16:52 ๑Secret 阅读(27) 评论(0) 推荐(0) 编辑
摘要: delete 运算符删除对以前定义的对象属性或方法的引用。 不可以删除的如下: 1通过var定义的变量 var a=1;delete a//false 2 声明后的函数 function a(){};delete a//false 3 prototype定义的属性 a.prototype.b=2;d 阅读全文
posted @ 2021-12-10 16:45 ๑Secret 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 顺便复习forEach/filter/some 方法. 1 fulter查找满足条件的元素 返回的是一个数组 里面包含所有满足条件的元素 2some 查找数组是否存在 如果遇到第一个存在 就会立马返回true 不会继续执行对比 阅读全文
posted @ 2021-12-09 16:49 ๑Secret 阅读(42) 评论(0) 推荐(0) 编辑
摘要: var o={ name:'asd' } fn.call(o ) 此时this会指向o对象 阅读全文
posted @ 2021-12-09 14:38 ๑Secret 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 圣杯模式记得整一下 数组原型对象注意事项 阅读全文
posted @ 2021-12-09 14:02 ๑Secret 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-12-08 14:15 ๑Secret 阅读(15) 评论(0) 推荐(0) 编辑
摘要: https://www.bilibili.com/video/BV1Sy4y1C7ha?p=433 阅读全文
posted @ 2021-12-08 11:23 ๑Secret 阅读(14) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2021-12-07 22:59 ๑Secret 阅读(228) 评论(0) 推荐(0) 编辑