From d860d5b645633a3f30a0d8fa38f8bc8d67104857 Mon Sep 17 00:00:00 2001 From: chochi1st Date: Fri, 24 May 2019 22:27:05 +0800 Subject: [PATCH] Site updated: 2019-05-24 22:27:05 --- .../22/3 \345\257\271\350\261\241/index.html" | 4 +- .../22/4 \345\207\275\346\225\260/index.html" | 8 +- .../index.html" | 4 +- 2019/05/22/6 Array/index.html | 25 ++- .../index.html" | 8 +- 2019/05/22/9 JavaScript Classes/index.html | 8 +- .../index.html" | 8 +- "2019/05/22/Call\344\270\216Apply/index.html" | 4 +- .../index.html" | 8 +- .../22/\347\273\247\346\211\277/index.html" | 34 ++-- archives/2019/05/index.html | 32 +-- archives/2019/index.html | 32 +-- archives/index.html | 32 +-- .../index.html" | 32 +-- .../page/2/index.html" | 4 +- content.json | 2 +- index.html | 190 ++++++++---------- tags/JS/index.html | 36 ++-- 18 files changed, 225 insertions(+), 246 deletions(-) diff --git "a/2019/05/22/3 \345\257\271\350\261\241/index.html" "b/2019/05/22/3 \345\257\271\350\261\241/index.html" index 1683274..6aed412 100644 --- "a/2019/05/22/3 \345\257\271\350\261\241/index.html" +++ "b/2019/05/22/3 \345\257\271\350\261\241/index.html" @@ -250,11 +250,11 @@

- +
- ECMA5 面向对象编程 + ECMA5 this指针
diff --git "a/2019/05/22/4 \345\207\275\346\225\260/index.html" "b/2019/05/22/4 \345\207\275\346\225\260/index.html" index c819a0f..ba89dd8 100644 --- "a/2019/05/22/4 \345\207\275\346\225\260/index.html" +++ "b/2019/05/22/4 \345\207\275\346\225\260/index.html" @@ -265,18 +265,18 @@

- +
- ECMA5 数组 + ECMA5 继承
- -
ECMA5 面向对象编程
+
+
ECMA5 this指针
diff --git "a/2019/05/22/5 \346\240\207\345\207\206\345\272\223/index.html" "b/2019/05/22/5 \346\240\207\345\207\206\345\272\223/index.html" index 996ff34..d772521 100644 --- "a/2019/05/22/5 \346\240\207\345\207\206\345\272\223/index.html" +++ "b/2019/05/22/5 \346\240\207\345\207\206\345\272\223/index.html" @@ -249,8 +249,8 @@

-
ECMA5 包装对象
+
+
ECMA5 面向对象编程
diff --git a/2019/05/22/6 Array/index.html b/2019/05/22/6 Array/index.html index ab09646..2125ce0 100644 --- a/2019/05/22/6 Array/index.html +++ b/2019/05/22/6 Array/index.html @@ -8,18 +8,18 @@ ECMA5 数组 | chochi's workshop - + - + - + - + @@ -164,14 +164,13 @@

1 静态方法

1.1 判断是否为数组

    -
  1. 使用Array的静态方法

    +
  2. 使用Array的静态方法
  3. +
1
Array.isArray( array )
- -
  • 使用原型toString方法,返回的字符串第二个词表示构造函数

    -
  • +
      +
    1. 使用原型toString方法,返回的字符串第二个词表示构造函数
    1
    Object.prototype.toString.call( array ) // [object array]
    -
    1. instanceof (不太靠谱)
    @@ -250,18 +249,18 @@

    - +
    - ECMA5 继承 + ECMA5 包装对象
    - -
    ECMA5 函数
    +
    +
    ECMA5 CALL APPLY 模拟
    diff --git "a/2019/05/22/7 \345\214\205\350\243\205\345\257\271\350\261\241 wrapper/index.html" "b/2019/05/22/7 \345\214\205\350\243\205\345\257\271\350\261\241 wrapper/index.html" index b0fd101..a2ceab3 100644 --- "a/2019/05/22/7 \345\214\205\350\243\205\345\257\271\350\261\241 wrapper/index.html" +++ "b/2019/05/22/7 \345\214\205\350\243\205\345\257\271\350\261\241 wrapper/index.html" @@ -256,18 +256,18 @@

    - +
    - ECMA5 标准库 + ECMA6 类
    - -
    ECMA6 类
    +
    +
    ECMA5 数组
    diff --git a/2019/05/22/9 JavaScript Classes/index.html b/2019/05/22/9 JavaScript Classes/index.html index d5fa832..7d41643 100644 --- a/2019/05/22/9 JavaScript Classes/index.html +++ b/2019/05/22/9 JavaScript Classes/index.html @@ -236,18 +236,18 @@

    - +
    - ECMA5 包装对象 + ECMA5 面向对象编程
    - -
    ECMA5 this指针
    +
    +
    ECMA5 包装对象
    diff --git "a/2019/05/22/9 \351\235\242\345\220\221\345\257\271\350\261\241\347\274\226\347\250\213/index.html" "b/2019/05/22/9 \351\235\242\345\220\221\345\257\271\350\261\241\347\274\226\347\250\213/index.html" index 25f53ae..b457910 100644 --- "a/2019/05/22/9 \351\235\242\345\220\221\345\257\271\350\261\241\347\274\226\347\250\213/index.html" +++ "b/2019/05/22/9 \351\235\242\345\220\221\345\257\271\350\261\241\347\274\226\347\250\213/index.html" @@ -277,18 +277,18 @@

    - +
    - ECMA5 函数 + ECMA5 标准库
    - -
    ECMA5 对象
    +
    +
    ECMA6 类
    diff --git "a/2019/05/22/Call\344\270\216Apply/index.html" "b/2019/05/22/Call\344\270\216Apply/index.html" index eff4596..5c05de7 100644 --- "a/2019/05/22/Call\344\270\216Apply/index.html" +++ "b/2019/05/22/Call\344\270\216Apply/index.html" @@ -234,11 +234,11 @@

    - +
    - ECMA5 this指针 + ECMA5 数组
    diff --git "a/2019/05/22/\345\205\263\344\272\216 this \346\214\207\351\222\210/index.html" "b/2019/05/22/\345\205\263\344\272\216 this \346\214\207\351\222\210/index.html" index 097d351..4a65c40 100644 --- "a/2019/05/22/\345\205\263\344\272\216 this \346\214\207\351\222\210/index.html" +++ "b/2019/05/22/\345\205\263\344\272\216 this \346\214\207\351\222\210/index.html" @@ -218,18 +218,18 @@

    1