From 5c081b6261246022f1eb37f4f0123750f2281ec1 Mon Sep 17 00:00:00 2001 From: einq7 <50612752+AlanCutFlim@users.noreply.github.com> Date: Fri, 19 Feb 2021 17:29:12 +0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ffc9e9a8..da8208a1 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ return oldArr.set(4, newValue); {a:1, b:2, c:3} === {a:1, b:2, c:3}; // false [1, 2, [3, 4]] === [1, 2, [3, 4]]; // false ``` -对于上面只能采用 `deepCopy`、`deepCompare`来遍历比较,不仅麻烦且好性能。 +对于上面只能采用 `deepCopy`、`deepCompare`来遍历比较,不仅麻烦且性能差。 我们感受来一下`Immutable`的做法! ``` JavaScript