摘要:
1.将远程仓库克隆到本地 git clone 远程仓库的地址 2.设置自己的用户名和邮件地址 会被写入到 C:/Users/用户名文件夹/.gitconfig 文件中。这个文件是 Git 的全局配置文件,配置一次即可永久生效。 git config --global user.name "ithei 阅读全文
posted @ 2021-01-11 21:30
歇歇吧
阅读(117)
评论(0)
推荐(0)
摘要:
1.通过 instanceof 判断返回一个布尔值 用于检验构造函数的prototype属性是否出现在对象的原型链中的任何位置 let a = []; a instanceof Array; //true let b = {}; b instanceof Array; //false 在上方代码中, 阅读全文
posted @ 2021-01-11 21:29
歇歇吧
阅读(83)
评论(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
歇歇吧
阅读(61)
评论(0)
推荐(0)
摘要:
浏览器缓存:把一个已经请求过的web资源(如html页面,图片,JS,数据)拷贝一份放在浏览器中 localStorage sessionStorage cookie三者的异同 web存储 sessionstorage localstorage cookie(不是h5新增) 不会把数据发送给服务器 阅读全文
posted @ 2021-01-11 21:21
歇歇吧
阅读(118)
评论(0)
推荐(0)

浙公网安备 33010602011771号