@@ -544,7 +544,7 @@ function objectConstant(obj) {
544
544
: this )
545
545
546
546
// 方法二
547
- const getGlobal = function () {
547
+ function getGlobal () {
548
548
if (typeof self !== ' undefined' ) {
549
549
return self
550
550
}
@@ -2315,7 +2315,7 @@ ES6 对这个属性的行为做出了一些修改,如果将一个匿名函数
2315
2315
2316
2316
``` js
2317
2317
// 匿名函数
2318
- const f = function () {
2318
+ function f () {
2319
2319
}
2320
2320
2321
2321
// ES5
@@ -2328,7 +2328,7 @@ f.name // "f"
2328
2328
如果将一个具名函数赋值给一个变量,则 ES5 和 ES6 的name属性都返回这个具名函数原本的名字。
2329
2329
2330
2330
``` js
2331
- const bar = function test () {
2331
+ function bar () {
2332
2332
}
2333
2333
2334
2334
// ES5
@@ -3094,9 +3094,9 @@ Array.of(3).length // 1
3094
3094
弥补数组构造函数` Array() ` 的不足。因为参数个数的不同,会导致` Array() ` 的行为有差异。
3095
3095
3096
3096
``` js
3097
- Array () // []
3098
- Array ( 3 ) // [, , ,]
3099
- Array (3 , 11 , 8 ) // [3, 11, 8]
3097
+ new Array () // []
3098
+ Array . from ({ length : 3 } ) // [, , ,]
3099
+ new Array (3 , 11 , 8 ) // [3, 11, 8]
3100
3100
```
3101
3101
3102
3102
` Array() ` 方法没有参数、一个参数、三个参数时,返回的结果都不一样。
@@ -3430,7 +3430,7 @@ arr.flatMap(function callback(currentValue[, index[, array]]) {
3430
3430
3431
3431
``` js
3432
3432
// 返回具有 3 个空位的数组。
3433
- Array ( 3 ) // [, , ,]
3433
+ Array . from ({ length : 3 } ) // [, , ,]
3434
3434
```
3435
3435
3436
3436
空位不是` undefined ` ,一个位置的值等于` undefined ` ,依然是有值的。** 空位是没有任何值** ,in运算符可以说明这一点。
@@ -3833,7 +3833,7 @@ descriptor.set.name // "set foo"
3833
3833
``` js
3834
3834
(new Function ()).name // "anonymous"
3835
3835
3836
- const doSomething = function () {
3836
+ function doSomething () {
3837
3837
// ...
3838
3838
}
3839
3839
doSomething .bind ().name // "bound doSomething"
@@ -4328,9 +4328,9 @@ console.log(obj) // { "0": "a", "1": "b", "2": "c" }
4328
4328
只有字符串合入目标对象(以字符数组的形式),数值和布尔值都会被忽略。**因为只有字符串的包装对象,会产生可枚举属性。**
4329
4329
4330
4330
` ` ` js
4331
- Object (true ) // {[[PrimitiveValue]]: true}
4332
- Object (10 ) // {[[PrimitiveValue]]: 10}
4333
- Object (' abc' ) // {0: "a", 1: "b", 2: "c", length: 3, [[PrimitiveValue]]: "abc"}
4331
+ new Object (true ) // {[[PrimitiveValue]]: true}
4332
+ new Object (10 ) // {[[PrimitiveValue]]: 10}
4333
+ new Object (' abc' ) // {0: "a", 1: "b", 2: "c", length: 3, [[PrimitiveValue]]: "abc"}
4334
4334
` ` `
4335
4335
4336
4336
` 布尔值` 、` 数值` 、` 字符串` 分别转成对应的包装对象,可以看到它们的原始值都在包装对象的内部属性` [[PrimitiveValue]]`
@@ -4606,7 +4606,7 @@ obj.method = function () {
4606
4606
` ` ` js
4607
4607
Object .defineProperty (Object .prototype , ' __proto__' , {
4608
4608
get () {
4609
- const _thisObj = Object (this )
4609
+ const _thisObj = new Object (this )
4610
4610
return Object .getPrototypeOf (_thisObj)
4611
4611
},
4612
4612
set (proto ) {
0 commit comments