摘要: 1.属性和方法的简洁表示法 1.1对象字面量是什么 //实例化构造函数 const person = new Object(); person.age = 18; person.speak = function (){}; //对象字面量 const person = { age:18, speak 阅读全文
posted @ 2021-06-01 21:39 平平无奇小乐一 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 1.解构赋值 1.1认识解构赋值 const arr = [1, 2, 3]; const a = arr[0]; const b = arr[1]; const c = arr[2]; console.log(a, b, c); //1 2 3 const [a, b, c] = [1, 2, 3 阅读全文
posted @ 2021-06-01 21:30 平平无奇小乐一 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 模板字符串 阅读全文
posted @ 2021-06-01 21:29 平平无奇小乐一 阅读(365) 评论(0) 推荐(0) 编辑
摘要: 1.模板字符串 const username1 = 'LiHao'; //一般字符串 const username2 = `LiHao`; //模板字符串 console.log(username1,username2,username1 username2) //LiHao LiHao true 阅读全文
posted @ 2021-05-19 14:06 平平无奇小乐一 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 1. let 和 const 是什么 声明变量或者声明常量 let 代替var,声明变量 const 声明常量 (constant的缩写) 2. let 和 const 的用法 var username = 'LiHao'; let age = 18; const sex ='male'; cons 阅读全文
posted @ 2021-05-17 19:39 平平无奇小乐一 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 基本的概念 1.仓库(Repository) 主要用来存放一些自己的开源项目代码,可以多个仓库,仓库和项目的关系是一对多。 2. 收藏(Star) ​ 仓库的收藏按钮,代表这别人收藏了你的项目,收藏以便于以后查看。 3. 克隆项目(Fork) ​ 可以把别人的项目克隆到自己的项目中,在项目中可以进行 阅读全文
posted @ 2019-12-17 19:38 平平无奇小乐一 阅读(92) 评论(0) 推荐(0) 编辑