摘要: 1.通过 instanceof 判断返回一个布尔值 用于检验构造函数的prototype属性是否出现在对象的原型链中的任何位置 let a = []; a instanceof Array; //true let b = {}; b instanceof Array; //false 在上方代码中, 阅读全文
posted @ 2021-01-11 21:29 歇歇吧 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 数组 1.创建数组 1.字面量 var arr=[] 2.实例化 var arr = new Array(1,2,3) 3.创建数组并给数组元素赋值 var myCars = new Array(); myCars[0] = "Saab"; myCars[1] = "Volvo"; 2.数组的方法 阅读全文
posted @ 2021-01-11 21:28 歇歇吧 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 浏览器缓存:把一个已经请求过的web资源(如html页面,图片,JS,数据)拷贝一份放在浏览器中 localStorage sessionStorage cookie三者的异同 web存储 sessionstorage localstorage cookie(不是h5新增) 不会把数据发送给服务器 阅读全文
posted @ 2021-01-11 21:21 歇歇吧 阅读(87) 评论(0) 推荐(0) 编辑