1.let和const命令 1.es6新增了let和const命令,与var用法类似,但它声明的变量只在let所在的代码块内有效(块级作用域,es5只有全局和函数作用域) { let a = 1; var b = 2; } console.log(a); //a is not defined let声明的变量只在自己的块内有效 console.log(b); var a = []; for(avr i = 0; i < 10; i++){ a[i] = function() { console.…
一.Map,Set,Array对比: 1.增 let map = new Map(); let set = new Set(); let array = []; map.set('t',1); //Map set.add({t:1}); //Set array.push({t:1});//数组 console.info('set-map-array',set,map,array); 2.查 let map_exist = map.has('t'); let set_exist = set.has…
promise 用于js的异步处理 形式: 1.申明一个promise的对象 let p = new Promise(function(成功时的参数,失败时的参数){ if(....){ 成功时的参数(成功时想传的值); }else{ 失败时的参数(失败时想传的值); } }); 调用then方法 p.then( //第一个为成功时调用的回调函数 (成功时想传的值)=>(...), /第二个为失败时调用的回调函数(失败时想传的值)=>(...), ); eg: let a=1; let p =…