查漏补缺

JS

1 var let const 区别

变量提升和暂时性死区

console.log(a); // undefined
var a = 10;

console.log(b); // ReferenceError
let b = 20;

console.log(c); // ReferenceError
const c = 30;

作用域

var // 全局作用域 函数作用域
let // 块级作用域
const // 块级作用域

重复声明

var a = 10;
var a = 20; // 20

let b = 10;
let b = 20; // SyntaxError

const c = 10;
const c = 20; // SyntaxError

2 es6 数组的扩展

将其他数据结构转成真正的数组

let set = new Set([1, 2, 2, 3]);
let arr = [...set]; // [1, 2, 3]

Array.from() 将类数组和可遍历对象转成数组

let arrayLike = {
  '0': 1,
  '1': 2,
  '2': 3,
  length: 3,
};
Array.from(arrayLike, x => x * x); // [1, 4, 9]

Array.prototype.flat()

[1, [2, [3, 4], 5], 6].flat() // [1, 2, [3, 4], 5, 6]
[1, [2, [3, 4], 5], 6].flat(2) // [1, 2, 3, 4, 5, 6]

Array.prototype.flatMap() 相当于先map后flat

[1, 2, 3].flatMap(x => [x, x * 2]) // [1, 2, 2, 4, 3, 6]

3 es6 对象的扩展

Object.setPrototypeOf()super

const a = {name: 'wqd'};
const b = {
  getName() {
    return super.name;
  }
};
Object.setPrototypeOf(b, a); // 设置a为b的原型对象
b.getName(); // 'wqd'

对象属性的遍历

方法名 适用范围
for in 自身和继承的可枚举属性(非Symbol)
Object.keys() 自身的可枚举属性(非Symbol)
Object.getOwnPropertyNames() 自身的(含不可枚举)(非Symbol)
Object.getOwnPropertySymbols() 自身Symbol
Reflect.ownKeys() 自身(含Symbol)(含不可枚举)

Object.is()

Object.is(+0, -0) // false
Object.is(NaN, NaN) // true

4 Promise

三种状态 pending fulfilled rejected

方法

Promise.all()
Promise.race()
Promise.allSettled()
Promise.resolve()
Promise.reject()

5 Generator

next方法的参数会作为上一个yield的返回值

function* foo(x) {
  var y = 2 * (yield(x + 1));
  var z = yield(y / 3);
  return x + y + z;
}
var x = foo(5);
x.next(); // {value: 6, done: false}
x.next(12); // {value: 8, done: false}
x.next(13); // {value: 42, done: true}

通过添加Generator函数使普通对象可遍历

function* f(obj) {
    let x = Reflect.ownKeys(obj);
    for (let i of x) {
        yield [i, obj[i]];
    }
}
const obj = {name: 'wqd', year: 1996};
for (let [key, value] of f(obj)) {
    console.log(`${key}: ${value}`);
}
// name: wqd
// year: 1996

6 异步解决方案

方法 分析
回调函数 回调地狱
Promise 链式调用但代码不简洁语义化不强
Generator 将异步代码以同步的形式进行编写
async/await 简洁语义化强

7 Proxy 代理

get()

function createArray(...elements) {
  let handler = {
    get(target, propKey, receiver) {
      let index = Number(propKey);
      if (index < 0) {
        propKey = String(target.length + index);
      }
      return Reflect.get(target, propKey, receiver);
    }
  };
  let target = [];
  target.push(...elements);
  return new Proxy(target, handler);
}
let arr = createArray('a', 'b', 'c');
console.log(arr[-1]); // 'c'

set()

let validator = {
  set(obj, prop, value) {
    if (prop === 'age') {
      if (!Number.isInteger(value)) {
        throw new TypeError('不是数字');
      }
      if (value > 200) {
        throw new RangeError('超出范围');
      }
    }
    obj[prop] = value;
  }
};
let person = new Proxy({}, validator);
person.age = 100;
console.log(person.age); // 100
person.age = 'wqd'; // TypeError
person.age = 300; // RangeError

8 Module

导入导出复合写法

export { foo, bar } from 'module'
// 等同于
import { foo, bar } from 'module'
export { foo, bar }

9 数组方法

修改原数组 不修改原数组
push unshift splice pop shift concat slice some every forEach filter map

10 深浅拷贝

浅拷贝

function shallowClone(obj) {
    const newObj = {};
    for(let prop in obj) {
        if(obj.hasOwnProperty(prop)) {
            newObj[prop] = obj[prop];
        }
    }
    return newObj;
}

深拷贝
JSON.stringify()会忽略 undefined Symbol function

const obj = {
    a: "A",
    b: undefined,
    c: function() {},
    d: Symbol("A"),
};
const newObj = JSON.parse(JSON.stringify(obj));
console.log(newObj); // {a: 'A'}

11 原型和原型链

function Person(name) {
    this.name = name;
    this.age = 18;
    this.sayName = function() {
        console.log(this.name);
    }
}
const person = new Person("person");
// true
person.__proto__ === Person.prototype
Person.__proto__ === Function.prototype
Person.prototype.__proto__ === Object.prototype
Object.__proto__ === Function.prototype
Object.prototype.__proto__ === null
Function.__proto__ === Function.prototype

12 实现继承的方式

原型链继承

function Parent() {
    this.name = "a";
    this.arr = [1, 2, 3];
}
function Child() {
    this.type = "b";
}
Child.prototype = new Parent();
// 潜在问题
let a = new Child();
let b = new Child();
a.arr.push(4);
console.log(a.arr, b.arr); // 同为 [1, 2, 3, 4]

构造函数继承 只继承父类的实例属性和方法

function Parent() {
    this.name = "a";
}
Parent.prototype.getName = function () {
    return this.name;
}
function Child() {
    Parent.call(this);
    this.type = "b";
}
let child = new Child();
console.log(child); // {name: 'a', type: 'b'}
console.log(child.getName()); // TypeError

组合继承 重复执行会有额外性能开销

function Parent() {
    this.name = "a";
    this.arr = [1, 2, 3];
}
Parent.prototype.getName = function () {
    return this.name;
}
function Child() {
    Parent.call(this);
    this.type = "b";
}
Child.prototype = new Parent();
Child.prototype.constructor = Child;
let a = new Child();
let b = new Child();
a.arr.push(4);
console.log(a.arr, b.arr); // [1, 2, 3, 4] [1, 2, 3]
console.log(a.getName(), b.getName()); // "a" "a"

原型式继承 浅拷贝

let parent = {
    name: "a",
    arr: [1, 2, 3],
    getName: function () {
        return this.name;
    }
};
let person = Object.create(parent);

寄生式继承

let parent = {
    name: "a",
    arr: [1, 2, 3],
    getName: function () {
        return this.name;
    }
};
function clone(obj) {
    let clone = Object.create(obj);
    clone.getArr = function () {
        return this.arr;
    };
    return clone;
}
let person = clone(parent);

寄生组合式继承

function clone(parent, child) {
    child.prototype = Object.create(parent.prototype);
    child.prototype.constructor = child;
}
function Parent() {
    this.name = "a";
    this.arr = [1, 2, 3];
}
Parent.prototype.getName = function () {
    return this.name;
}
function Child() {
    Parent.call(this);
    this.type = "b";
}
clone(Parent, Child);
Child.prototype.getType = function () {
    return this.type;
}
let person = new Child();

13 this绑定规则 优先级从高到低

new绑定 显式绑定 隐式绑定 默认绑定

CSS

HTML

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,752评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,100评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,244评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,099评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,210评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,307评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,346评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,133评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,546评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,849评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,019评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,702评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,331评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,030评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,260评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,871评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,898评论 2 351

推荐阅读更多精彩内容