We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 524fe0b commit 9dd4f61Copy full SHA for 9dd4f61
JS/JS-ch.md
@@ -55,13 +55,13 @@ let a = 111 // 这只是字面量,不是 number 类型
55
a.toString() // 使用时候才会转换为对象类型
56
```
57
58
-对象(Object)是引用类型,在使用过程中会遇到浅拷贝和深拷贝的问题(TODO)。
+对象(Object)是引用类型,在使用过程中会遇到浅拷贝和深拷贝的问题。
59
60
```js
61
let a = { name: 'FE' }
62
let b = a
63
b.name = 'EF'
64
-console.log(a) // EF
+console.log(a.name) // EF
65
66
67
# Typeof
JS/JS-en.md
@@ -64,7 +64,7 @@ Object is a reference type. We will encouter the problems about shallow copy and
68
69
70
# Type Conversion
0 commit comments