知识体系-js

知识梳理

1. 数据类型

基本类型 :

number boolean string null undefined bigInt symbol

类型判断

  • typeof
  • instanceof
    1
    2
    var a='11'
    Object.prototype.toString.call(a);//[object String]

    2. 原型、原型链

    3. new执行了哪些操作

    4.闭包

    为什么使用闭包

    好处

    5. this

    普通函数 箭头函数 this获取

    改变this的方法

    6. 数组常用方法

    7. 字符串常用方法

    8. 事件代理

    9. 异步

    回调函数

    promise

    setTimeout