thanhle.blog/khi-nao-thi-them-state-moi-o-frontend #73
Replies: 1 comment 5 replies
-
Chào anh Thành. Trước tiên cảm ơn anh vì những đóng góp cho cộng đồng IT Việt Nam qua những bài viết kỹ thuật như thế này. const onClickCheck = () => {
setFilterMineTodo(!filterMineTodo); // (1)
setFilteredList(filterMineTodo
? todo.filter((item) => item.userId === 1)
: todo); // (2)
} Sau khi dòng (1) thực thi thì giá trị filterMineTodo ở dòng (2) vẫn là giá trị cũ phải không ạ? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
thanhle.blog/khi-nao-thi-them-state-moi-o-frontend
Công thức khi viết state frontend một cách gọn gàng, ít bug 🐞
https://thanhle.blog/blog/khi-nao-thi-them-state-moi-o-frontend
Beta Was this translation helpful? Give feedback.
All reactions