摘要:
Promise 1.认识Promise Promise是异步操作的一种解决方法 回调函数 document.addEventListener('click', () => { console.log("这里是异步的!"); }); console.log("这里是同步的!"); 2.什么时候使用Pr 阅读全文
摘要:
ES6的新增方法 1.字符串的新增方法 字符串的includes():判断字符串中是否含有某些字符 1.1 基本用法 'abc'.includes('ab'); //true 'abc'.includes('ac'); //false 1.2第二个参数 表示开始搜索的位置,默认是0 'abc'.in 阅读全文
摘要:
1.认识剩余参数 const add = (x,y,z,...args)=>{} 2.剩余参数的本质 const add = (x,y,...args)=>{ console.log(x,y,args); } add(); //undefined undefined Array(0) add(1,2 阅读全文
摘要:
1.属性和方法的简洁表示法 1.1对象字面量是什么 //实例化构造函数 const person = new Object(); person.age = 18; person.speak = function (){}; //对象字面量 const person = { age:18, speak 阅读全文
摘要:
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 阅读全文
摘要:
模板字符串 阅读全文