原博客有html css javascript 必应切图 轮播图解析 见http://blog.sina.com.cn/jjcaihao

模块一:let const +解构赋值

 

ES6入门---第一单元

模块二:字符串

ES6入门---第一单元

模块三:函数

ES6入门---第一单元

补充:

Array.from:作用: 把类数组(获取一组元素、arguments...) 对象转成数组

    个人观点: 具备 length这个东西,就靠谱

Array.of():  把一组值,转成数组

    let arr = Array.of('apple','banana','orange');

    console.log(arr);

相关文章:

  • 2021-07-08
  • 2022-01-15
  • 2021-06-16
  • 2021-08-09
猜你喜欢
  • 2021-06-24
  • 2021-05-24
  • 2022-12-23
  • 2022-02-25
  • 2021-04-21
  • 2021-09-09
相关资源
相似解决方案