摘要: ####let和const命令 let和const有块级作用域,还有暂时性死区,即在声明之前不能调用。 ####变量的解构赋值 数组的解构赋值:let [a, b, c] = [1, 2, 3] 对象的解构赋值:let { name, age } = { name: "sifan", age: 20 阅读全文
posted @ 2021-12-08 18:55 卿六 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 第一次学习git,感觉多用还是很简单的呢,接下来稍微写一下主要的命令吧。 git init 初始化.git文件夹 git add . 将全部文件夹都添加到暂存区 git add 文件夹名 将某个具体文件夹添加到暂存区 git commit -m "注解" 将暂存区的推送到远端 git commit 阅读全文
posted @ 2021-12-08 11:15 卿六 阅读(44) 评论(0) 推荐(0) 编辑