摘要:
关于拼接字符串 const name = '小明'; const score = 59; let result = ''; if(score > 60){ result = `${name}的考试成绩及格`; }else{ result = `${name}的考试成绩不及格`; } 在${}中可以放 阅读全文
摘要:
set去重 var demo = new Set([1,1,3,5,4,6]); console.log([...demo]); // [1, 3, 5, 4, 6] 合并两个数组,合并两个对象。 const a = [1,2,3]; const b = [1,5,6]; const c = a.c 阅读全文
摘要:
1.Array.from方法用于将两类对象转为真正的数组:类似数组的对象(array-like object)和可遍历(iterable)的对象(包括 ES6 新增的数据结构 Set 和 Map)。 下面是一个类似数组的对象,Array.from将它转为真正的数组。 let arrayLike = 阅读全文